feat(clone): read url

This commit is contained in:
grimhilt
2024-09-15 18:16:46 +02:00
parent 3af7a00b0f
commit d442bf689c
6 changed files with 168 additions and 1 deletions

View File

@@ -26,7 +26,7 @@ fn compare_vect(vec1: Vec<Obj>, vec2: Vec<&str>, config: &Config) {
}
fn status_expected(config: &Config, staged: Vec<&str>, not_staged: Vec<&str>) {
let res = get_obj_changes(&DEFAULT_STATUS_ARG, config);
let res = get_obj_changes(config);
assert_eq!(res.staged.len(), staged.len());
assert_eq!(res.not_staged.len(), not_staged.len());