diff options
| author | Russell Belfer <arrbee@arrbee.com> | 2012-02-01 12:30:35 -0800 |
|---|---|---|
| committer | Russell Belfer <arrbee@arrbee.com> | 2012-02-01 12:30:35 -0800 |
| commit | e8c96ed2a74a4fcd9789721b4ebfd78586b3a16f (patch) | |
| tree | 9cb7c7a096c76c8b0ec05289c42ffff2baef042c /tests-clar/attr/repo.c | |
| parent | 62a1f713de384e141045facf3c1a53d9642e8eb5 (diff) | |
| download | libgit2-e8c96ed2a74a4fcd9789721b4ebfd78586b3a16f.tar.gz | |
Add unit tests for recent bug fixes
Add unit tests to confirm ignore directory pattern matches and
to confirm that ignore and attribute files are loaded properly
into the attribute file cache.
Diffstat (limited to 'tests-clar/attr/repo.c')
| -rw-r--r-- | tests-clar/attr/repo.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests-clar/attr/repo.c b/tests-clar/attr/repo.c index 6fc36d2b6..7a716042a 100644 --- a/tests-clar/attr/repo.c +++ b/tests-clar/attr/repo.c @@ -1,6 +1,7 @@ #include "clar_libgit2.h" #include "fileops.h" #include "git2/attr.h" +#include "attr.h" static git_repository *g_repo = NULL; @@ -89,6 +90,10 @@ void test_attr_repo__get_one(void) git_buf_free(&b); } + + cl_git_pass(git_attr_cache__is_cached(g_repo, ".git/info/attributes")); + cl_git_pass(git_attr_cache__is_cached(g_repo, ".gitattributes")); + cl_git_pass(git_attr_cache__is_cached(g_repo, "sub/.gitattributes")); } void test_attr_repo__get_many(void) |
