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
b90eb84f
Commit
b90eb84f
authored
Jan 17, 2013
by
Sebastian Bauer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Test that pushs properly fail for transports that don't provide a push implementation.
parent
9bf56c7b
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
0 deletions
+21
-0
tests-clar/network/remotes.c
+21
-0
No files found.
tests-clar/network/remotes.c
View file @
b90eb84f
...
...
@@ -60,6 +60,27 @@ void test_network_remotes__pushurl(void)
cl_assert
(
git_remote_pushurl
(
_remote
)
==
NULL
);
}
void
test_network_remotes__error_when_no_push_available
(
void
)
{
git_remote
*
r
;
git_transport
*
t
;
git_push
*
p
;
cl_git_pass
(
git_remote_create_inmemory
(
&
r
,
_repo
,
NULL
,
cl_fixture
(
"testrepo.git"
)));
cl_git_pass
(
git_transport_local
(
&
t
,
r
,
NULL
));
/* Make sure that push is really not available */
t
->
push
=
NULL
;
cl_git_pass
(
git_remote_connect
(
r
,
GIT_DIRECTION_PUSH
));
cl_git_pass
(
git_push_new
(
&
p
,
r
));
cl_git_pass
(
git_push_add_refspec
(
p
,
"refs/heads/master"
));
cl_git_fail_with
(
git_push_finish
(
p
),
GIT_ERROR
);
git_push_free
(
p
);
git_remote_free
(
r
);
}
void
test_network_remotes__parsing_ssh_remote
(
void
)
{
cl_assert
(
git_remote_valid_url
(
"git@github.com:libgit2/libgit2.git"
)
);
...
...
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