mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-08 09:02:55 +00:00
12 lines
226 B
C
12 lines
226 B
C
#include "clar_libgit2.h"
|
|
|
|
void test_index_inmemory__can_create_an_inmemory_index(void)
|
|
{
|
|
git_index *index;
|
|
|
|
cl_git_pass(git_index_new(&index));
|
|
cl_assert_equal_i(0, git_index_entrycount(index));
|
|
|
|
git_index_free(index);
|
|
}
|