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
f6057437
Commit
f6057437
authored
Dec 01, 2017
by
Matija Čupić
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename spec local variable to avoid shadowing
parent
42d87f90
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
8 deletions
+5
-8
spec/controllers/projects/clusters_controller_spec.rb
spec/controllers/projects/clusters_controller_spec.rb
+5
-8
No files found.
spec/controllers/projects/clusters_controller_spec.rb
View file @
f6057437
...
...
@@ -16,10 +16,7 @@ describe Projects::ClustersController do
context
'when project has one or more clusters'
do
let
(
:project
)
{
create
(
:project
)
}
let
(
:clusters
)
{
create_list
(
:cluster
,
2
,
:provided_by_gcp
,
projects:
[
project
])
}
before
do
clusters
.
last
.
enabled
=
false
end
let
(
:inactive_cluster
)
{
create
(
:cluster
,
:provided_by_gcp
,
projects:
[
project
])
}
it
'lists available clusters'
do
go
...
...
@@ -56,16 +53,16 @@ describe Projects::ClustersController do
context
'when only enabled clusters are requested'
do
it
'returns only enabled clusters'
do
get
:index
,
namespace_id:
project
.
namespace
,
project_id:
project
,
scope:
'active'
clusters
=
assigns
(
:clusters
)
expect
(
clusters
.
all?
{
|
cluster
|
cluster
.
enabled
==
true
}).
to
eq
(
true
)
view_
clusters
=
assigns
(
:clusters
)
expect
(
view_
clusters
.
all?
{
|
cluster
|
cluster
.
enabled
==
true
}).
to
eq
(
true
)
end
end
context
'when only disabled clusters are requested'
do
it
'returns only disabled clusters'
do
get
:index
,
namespace_id:
project
.
namespace
,
project_id:
project
,
scope:
'inactive'
clusters
=
assigns
(
:clusters
)
expect
(
clusters
.
all?
{
|
cluster
|
cluster
.
enabled
==
false
}).
to
eq
(
true
)
view_
clusters
=
assigns
(
:clusters
)
expect
(
view_
clusters
.
all?
{
|
cluster
|
cluster
.
enabled
==
false
}).
to
eq
(
true
)
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