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
fefc3e9e
Commit
fefc3e9e
authored
Jun 15, 2016
by
Kamil Trzcinski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make sure that we test RegisterBuildService behavior for deleted projects
parent
78d5828f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
0 deletions
+22
-0
spec/services/ci/register_build_service_spec.rb
spec/services/ci/register_build_service_spec.rb
+22
-0
No files found.
spec/services/ci/register_build_service_spec.rb
View file @
fefc3e9e
...
@@ -45,6 +45,28 @@ module Ci
...
@@ -45,6 +45,28 @@ module Ci
end
end
end
end
context
'deleted projects'
do
before
do
project
.
update
(
pending_delete:
true
)
end
context
'for shared runners'
do
before
do
project
.
update
(
shared_runners_enabled:
true
)
end
it
'does not pick a build'
do
expect
(
service
.
execute
(
shared_runner
)).
to
be_nil
end
end
context
'for specific runner'
do
it
'does not pick a build'
do
expect
(
service
.
execute
(
specific_runner
)).
to
be_nil
end
end
end
context
'allow shared runners'
do
context
'allow shared runners'
do
before
do
before
do
project
.
update
(
shared_runners_enabled:
true
)
project
.
update
(
shared_runners_enabled:
true
)
...
...
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