Commit 0fd80681 by Reginald McLean Committed by Edward Thomson

Added missing is_prunable test

parent 9d41a3fd
...@@ -645,3 +645,16 @@ void test_worktree_worktree__validate_invalid_worktreedir(void) ...@@ -645,3 +645,16 @@ void test_worktree_worktree__validate_invalid_worktreedir(void)
git_worktree_free(wt); git_worktree_free(wt);
} }
void test_worktree_worktree__is_prunable_missing_repo(void)
{
git_worktree *wt;
cl_git_pass(git_worktree_lookup(&wt, fixture.repo, "testrepo-worktree"));
p_rename("testrepo", "testrepo-tmp");
/* Should not be prunable since the repository moved */
cl_assert(!git_worktree_is_prunable(wt, NULL));
p_rename("testrepo-tmp", "testrepo");
git_worktree_free(wt);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment