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
Jérome Perrin
gitlab-ce
Commits
bebfceb1
Commit
bebfceb1
authored
Oct 17, 2016
by
Kamil Trzcinski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix specs
parent
5a46e22a
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
12 additions
and
12 deletions
+12
-12
spec/features/environments_spec.rb
spec/features/environments_spec.rb
+9
-9
spec/lib/ci/gitlab_ci_yaml_processor_spec.rb
spec/lib/ci/gitlab_ci_yaml_processor_spec.rb
+1
-1
spec/lib/gitlab/ci/config/node/environment_spec.rb
spec/lib/gitlab/ci/config/node/environment_spec.rb
+1
-1
spec/models/environment_spec.rb
spec/models/environment_spec.rb
+1
-1
No files found.
spec/features/environments_spec.rb
View file @
bebfceb1
...
...
@@ -217,7 +217,7 @@ feature 'Environments', feature: true do
expect
(
page
).
to
have_link
(
'Stop'
)
end
scenario
'
scenario '
does
allow
to
stop
environment
' do
'
do
scenario
'
does allow to stop environment
'
do
click_link
(
'Stop'
)
expect
(
page
).
to
have_content
(
'close_app'
)
...
...
spec/lib/ci/gitlab_ci_yaml_processor_spec.rb
View file @
bebfceb1
...
...
@@ -754,7 +754,7 @@ module Ci
it
'does return production'
do
expect
(
builds
.
size
).
to
eq
(
1
)
expect
(
builds
.
first
[
:environment
]).
to
eq
(
environment
)
expect
(
builds
.
first
[
:options
]).
to
include
(
environment:
{
name:
environment
})
expect
(
builds
.
first
[
:options
]).
to
include
(
environment:
{
name:
environment
,
action:
"start"
})
end
end
...
...
spec/lib/gitlab/ci/config/node/environment_spec.rb
View file @
bebfceb1
...
...
@@ -28,7 +28,7 @@ describe Gitlab::Ci::Config::Node::Environment do
describe
'#value'
do
it
'returns valid hash'
do
expect
(
entry
.
value
).
to
eq
(
name:
'production'
)
expect
(
entry
.
value
).
to
include
(
name:
'production'
)
end
end
...
...
spec/models/environment_spec.rb
View file @
bebfceb1
...
...
@@ -8,7 +8,7 @@ describe Environment, models: true do
it
{
is_expected
.
to
delegate_method
(
:last_deployment
).
to
(
:deployments
).
as
(
:last
)
}
it
{
is_expected
.
to
delegate_method
(
:stop_action
).
to
(
:last_deployment
)
.
as
(
:last
)
}
it
{
is_expected
.
to
delegate_method
(
:stop_action
).
to
(
:last_deployment
)
}
it
{
is_expected
.
to
validate_presence_of
(
:name
)
}
it
{
is_expected
.
to
validate_uniqueness_of
(
:name
).
scoped_to
(
:project_id
)
}
...
...
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