ok/jj
1
0
Fork 0
forked from mirrors/jj

working_copy: fix test to show that already tracked files are not ignored

The point of having the `modified` and `removed` files in the test was
to show that they don't get untracked, but I forgot to include them in
the `.gitignores`, so there was no reason they would have gotten
untracked anyway.
This commit is contained in:
Martin von Zweigbergk 2020-12-22 10:03:42 -08:00
parent 3b326a942c
commit c41251eaff

View file

@ -282,7 +282,7 @@ fn test_gitignores(use_git: bool) {
let subdir_modified_path = FileRepoPath::from("dir/modified");
let subdir_ignored_path = FileRepoPath::from("dir/ignored");
testutils::write_working_copy_file(&repo, &gitignore_path, "ignored");
testutils::write_working_copy_file(&repo, &gitignore_path, "ignored\n");
testutils::write_working_copy_file(&repo, &modified_path, "1");
testutils::write_working_copy_file(&repo, &removed_path, "1");
std::fs::create_dir(repo.working_copy_path().join("dir")).unwrap();
@ -308,6 +308,7 @@ fn test_gitignores(use_git: bool) {
]
);
testutils::write_working_copy_file(&repo, &gitignore_path, "ignored\nmodified\nremoved\n");
testutils::write_working_copy_file(&repo, &added_path, "2");
testutils::write_working_copy_file(&repo, &modified_path, "2");
std::fs::remove_file(