예제 #1
0
void test_status_worktree__show_workdir_only(void)
{
	assert_show(entry_count6, entry_paths6, entry_statuses6,
		GIT_STATUS_SHOW_WORKDIR_ONLY);
}
예제 #2
0
void test_status_worktree__show_index_only(void)
{
	assert_show(entry_count5, entry_paths5, entry_statuses5,
		GIT_STATUS_SHOW_INDEX_ONLY);
}
예제 #3
0
void test_status_worktree__show_index_and_workdir(void)
{
	assert_show(entry_count0, entry_paths0, entry_statuses0,
		GIT_STATUS_SHOW_INDEX_AND_WORKDIR);
}
예제 #4
0
파일: worktree.c 프로젝트: azyx3/libgit2
void test_status_worktree__show_workdir_only(void)
{
	assert_show(entry_count6, entry_paths6, entry_statuses6,
		cl_git_sandbox_init("status"), GIT_STATUS_SHOW_WORKDIR_ONLY, 0);
}
예제 #5
0
파일: worktree.c 프로젝트: azyx3/libgit2
void test_status_worktree__show_index_only(void)
{
	assert_show(entry_count5, entry_paths5, entry_statuses5,
		cl_git_sandbox_init("status"), GIT_STATUS_SHOW_INDEX_ONLY, 0);
}
예제 #6
0
파일: worktree.c 프로젝트: azyx3/libgit2
void test_status_worktree__show_index_and_workdir(void)
{
	assert_show(entry_count0, entry_paths0, entry_statuses0,
		cl_git_sandbox_init("status"), GIT_STATUS_SHOW_INDEX_AND_WORKDIR, 0);
}