git-conform 0.2.4

Keep track of your local git repositories
Documentation
1
2
3
4
5
6
7
use git_conform::core::api::list;

#[test]
fn case_list_empty() {
    // The function throws an error
    assert_eq!(list(""), Err(String::from("No repository is being tracked")));
}