Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlos Martín Nieto <cmn@dwim.me>2013-05-04 17:54:57 +0400
committerCarlos Martín Nieto <cmn@dwim.me>2013-05-11 13:20:37 +0400
commitfb592a96ebac46f0e176fbbe849cf9b52b9f4727 (patch)
tree4b2a386afa8eb890a3f0ed34d96d16fd826bc176 /tests-clar
parent51fc5e895d7655611431a0bdb76b9fd8499a9e1a (diff)
Remove outdated test
Selecting wether to list loose or packed references is not something we want to support anymore, so remove a test for this.
Diffstat (limited to 'tests-clar')
-rw-r--r--tests-clar/refs/list.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests-clar/refs/list.c b/tests-clar/refs/list.c
index 3948b2b7a..8a386fdfd 100644
--- a/tests-clar/refs/list.c
+++ b/tests-clar/refs/list.c
@@ -41,17 +41,6 @@ void test_refs_list__all(void)
git_strarray_free(&ref_list);
}
-void test_refs_list__symbolic_only(void)
-{
- // try to list only the symbolic references
- git_strarray ref_list;
-
- cl_git_pass(git_reference_list(&ref_list, g_repo, GIT_REF_SYMBOLIC));
- cl_assert(ref_list.count == 0); /* no symrefs in the test repo */
-
- git_strarray_free(&ref_list);
-}
-
void test_refs_list__do_not_retrieve_references_which_name_end_with_a_lock_extension(void)
{
git_strarray ref_list;