Lines Matching refs:git_stash_drop

28 	cl_git_fail_with(git_stash_drop(repo, 0), GIT_ENOTFOUND);  in test_stash_drop__cannot_drop_from_an_empty_stash()
66 cl_git_fail_with(git_stash_drop(repo, 666), GIT_ENOTFOUND); in test_stash_drop__cannot_drop_a_non_existing_stashed_state()
67 cl_git_fail_with(git_stash_drop(repo, 42), GIT_ENOTFOUND); in test_stash_drop__cannot_drop_a_non_existing_stashed_state()
68 cl_git_fail_with(git_stash_drop(repo, 3), GIT_ENOTFOUND); in test_stash_drop__cannot_drop_a_non_existing_stashed_state()
75 cl_git_pass(git_stash_drop(repo, 0)); in test_stash_drop__can_purge_the_stash_from_the_top()
76 cl_git_pass(git_stash_drop(repo, 0)); in test_stash_drop__can_purge_the_stash_from_the_top()
77 cl_git_pass(git_stash_drop(repo, 0)); in test_stash_drop__can_purge_the_stash_from_the_top()
79 cl_git_fail_with(git_stash_drop(repo, 0), GIT_ENOTFOUND); in test_stash_drop__can_purge_the_stash_from_the_top()
86 cl_git_pass(git_stash_drop(repo, 2)); in test_stash_drop__can_purge_the_stash_from_the_bottom()
87 cl_git_pass(git_stash_drop(repo, 1)); in test_stash_drop__can_purge_the_stash_from_the_bottom()
88 cl_git_pass(git_stash_drop(repo, 0)); in test_stash_drop__can_purge_the_stash_from_the_bottom()
90 cl_git_fail_with(git_stash_drop(repo, 0), GIT_ENOTFOUND); in test_stash_drop__can_purge_the_stash_from_the_bottom()
113 cl_git_pass(git_stash_drop(repo, 1)); in test_stash_drop__dropping_an_entry_rewrites_reflog_history()
135 cl_git_pass(git_stash_drop(repo, 0)); in test_stash_drop__dropping_the_last_entry_removes_the_stash()
136 cl_git_pass(git_stash_drop(repo, 0)); in test_stash_drop__dropping_the_last_entry_removes_the_stash()
137 cl_git_pass(git_stash_drop(repo, 0)); in test_stash_drop__dropping_the_last_entry_removes_the_stash()
167 cl_git_pass(git_stash_drop(repo, 0)); in test_stash_drop__dropping_the_top_stash_updates_the_stash_reference()