Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
9ecd3bc6
Commit
9ecd3bc6
authored
Sep 26, 2014
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improve git_push service specs
Signed-off-by:
Dmitriy Zaporozhets
<
dmitriy.zaporozhets@gmail.com
>
parent
8fae6ad7
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
0 deletions
+26
-0
spec/services/git_push_service_spec.rb
spec/services/git_push_service_spec.rb
+26
-0
No files found.
spec/services/git_push_service_spec.rb
View file @
9ecd3bc6
...
@@ -14,6 +14,32 @@ describe GitPushService do
...
@@ -14,6 +14,32 @@ describe GitPushService do
@ref
=
'refs/heads/master'
@ref
=
'refs/heads/master'
end
end
describe
'Push branches'
do
context
'new branch'
do
subject
do
service
.
execute
(
project
,
user
,
@blankrev
,
@newrev
,
@ref
)
end
it
{
should
be_true
}
end
context
'existing branch'
do
subject
do
service
.
execute
(
project
,
user
,
@oldrev
,
@newrev
,
@ref
)
end
it
{
should
be_true
}
end
context
'rm branch'
do
subject
do
service
.
execute
(
project
,
user
,
@oldrev
,
@blankrev
,
@ref
)
end
it
{
should
be_true
}
end
end
describe
"Git Push Data"
do
describe
"Git Push Data"
do
before
do
before
do
service
.
execute
(
project
,
user
,
@oldrev
,
@newrev
,
@ref
)
service
.
execute
(
project
,
user
,
@oldrev
,
@newrev
,
@ref
)
...
...
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