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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
ab37be2d
Commit
ab37be2d
authored
Dec 12, 2016
by
Grzegorz Bizon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add specs for build stop extended detailed status
parent
f91e8269
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
59 additions
and
4 deletions
+59
-4
lib/gitlab/ci/status/build/stop.rb
lib/gitlab/ci/status/build/stop.rb
+0
-4
spec/lib/gitlab/ci/status/build/stop_spec.rb
spec/lib/gitlab/ci/status/build/stop_spec.rb
+59
-0
No files found.
lib/gitlab/ci/status/build/stop.rb
View file @
ab37be2d
...
@@ -13,10 +13,6 @@ module Gitlab
...
@@ -13,10 +13,6 @@ module Gitlab
'stop'
'stop'
end
end
def
icon
'icon_status_skipped'
end
def
has_action?
def
has_action?
can?
(
user
,
:update_build
,
subject
)
can?
(
user
,
:update_build
,
subject
)
end
end
...
...
spec/lib/gitlab/ci/status/build/stop_spec.rb
0 → 100644
View file @
ab37be2d
require
'spec_helper'
describe
Gitlab
::
Ci
::
Status
::
Build
::
Stop
do
let
(
:core_status
)
{
double
(
'core status'
)
}
let
(
:user
)
{
double
(
'user'
)
}
subject
do
described_class
.
new
(
core_status
)
end
describe
'#text'
do
it
{
expect
(
subject
.
text
).
to
eq
'stop'
}
end
describe
'#label'
do
it
{
expect
(
subject
.
label
).
to
eq
'stop'
}
end
describe
'#icon'
do
it
'does not override core status icon'
do
expect
(
core_status
).
to
receive
(
:icon
)
subject
.
icon
end
end
describe
'.matches?'
do
context
'build is playable'
do
context
'when build stops an environment'
do
let
(
:build
)
do
create
(
:ci_build
,
:playable
,
:teardown_environment
)
end
it
'is a correct match'
do
expect
(
described_class
.
matches?
(
build
,
user
))
.
to
be
true
end
end
context
'when build does not stop an environment'
do
let
(
:build
)
{
create
(
:ci_build
,
:playable
)
}
it
'does not match'
do
expect
(
described_class
.
matches?
(
build
,
user
))
.
to
be
false
end
end
end
context
'when build is not playable'
do
let
(
:build
)
{
create
(
:ci_build
)
}
it
'does not match'
do
expect
(
described_class
.
matches?
(
build
,
user
))
.
to
be
false
end
end
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