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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Tatuya Kamada
gitlab-ce
Commits
e552e1fc
Commit
e552e1fc
authored
Nov 15, 2016
by
Grzegorz Bizon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Extend tests for delete branch service
parent
2a53d6c2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
2 deletions
+15
-2
spec/services/delete_branch_service_spec.rb
spec/services/delete_branch_service_spec.rb
+15
-2
No files found.
spec/services/delete_branch_service_spec.rb
View file @
e552e1fc
...
...
@@ -2,27 +2,40 @@ require 'spec_helper'
describe
DeleteBranchService
,
services:
true
do
let
(
:project
)
{
create
(
:project
)
}
let
(
:repository
)
{
project
.
repository
}
let
(
:user
)
{
create
(
:user
)
}
let
(
:service
)
{
described_class
.
new
(
project
,
user
)
}
describe
'#execute'
do
let
(
:result
)
{
service
.
execute
(
'feature'
)
}
context
'when user has access to push to repository'
do
before
do
project
.
team
<<
[
user
,
:developer
]
end
it
'removes the branch'
do
expect
(
branch_exists?
(
'feature'
)).
to
be
true
result
=
service
.
execute
(
'feature'
)
expect
(
result
[
:status
]).
to
eq
:success
expect
(
branch_exists?
(
'feature'
)).
to
be
false
end
end
context
'when user does not have access to push to repository'
do
it
'does not remove branch'
do
expect
(
branch_exists?
(
'feature'
)).
to
be
true
result
=
service
.
execute
(
'feature'
)
expect
(
result
[
:status
]).
to
eq
:error
expect
(
result
[
:message
]).
to
eq
'You dont have push access to repo'
expect
(
branch_exists?
(
'feature'
)).
to
be
true
end
end
end
def
branch_exists?
(
branch_name
)
repository
.
ref_exists?
(
"refs/heads/
#{
branch_name
}
"
)
end
end
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