Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
git2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
git2
Commits
8e912e79
Commit
8e912e79
authored
Jun 16, 2017
by
Ariel Davis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tests: try to init with empty template path
parent
15e11937
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
tests/repo/init.c
+11
-0
No files found.
tests/repo/init.c
View file @
8e912e79
...
...
@@ -320,6 +320,17 @@ void test_repo_init__sets_logAllRefUpdates_according_to_type_of_repository(void)
assert_config_entry_on_init_bytype
(
"core.logallrefupdates"
,
true
,
false
);
}
void
test_repo_init__empty_template_path
(
void
)
{
git_repository_init_options
opts
=
GIT_REPOSITORY_INIT_OPTIONS_INIT
;
opts
.
template_path
=
""
;
cl_git_pass
(
git_futils_mkdir
(
"foo"
,
0755
,
0
));
cl_git_pass
(
git_repository_init_ext
(
&
_repo
,
"foo"
,
&
opts
));
cleanup_repository
(
"foo"
);
}
void
test_repo_init__extended_0
(
void
)
{
git_repository_init_options
opts
=
GIT_REPOSITORY_INIT_OPTIONS_INIT
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment