mirror of
https://git.proxmox.com/git/libgit2
synced 2026-01-01 01:53:11 +00:00
repository_new: test its bareness
This commit is contained in:
parent
770aca94bd
commit
70c735e190
27
tests/repo/new.c
Normal file
27
tests/repo/new.c
Normal file
@ -0,0 +1,27 @@
|
||||
#include "clar_libgit2.h"
|
||||
#include "git2/sys/repository.h"
|
||||
|
||||
void test_repo_new__has_nothing(void)
|
||||
{
|
||||
git_repository *repo;
|
||||
|
||||
cl_git_pass(git_repository_new(&repo));
|
||||
cl_assert_equal_b(true, git_repository_is_bare(repo));
|
||||
cl_assert_equal_p(NULL, git_repository_path(repo));
|
||||
cl_assert_equal_p(NULL, git_repository_workdir(repo));
|
||||
git_repository_free(repo);
|
||||
}
|
||||
|
||||
void test_repo_new__is_bare_until_workdir_set(void)
|
||||
{
|
||||
git_repository *repo;
|
||||
|
||||
cl_git_pass(git_repository_new(&repo));
|
||||
cl_assert_equal_b(true, git_repository_is_bare(repo));
|
||||
|
||||
cl_git_pass(git_repository_set_workdir(repo, clar_sandbox_path(), 0));
|
||||
cl_assert_equal_b(false, git_repository_is_bare(repo));
|
||||
|
||||
git_repository_free(repo);
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user