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
Boxiang Sun
gitlab-ce
Commits
e1f9219a
Commit
e1f9219a
authored
Nov 27, 2017
by
Matija Čupić
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add specs for scoping in ClustersController
parent
374347f9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
0 deletions
+16
-0
spec/controllers/projects/clusters_controller_spec.rb
spec/controllers/projects/clusters_controller_spec.rb
+16
-0
No files found.
spec/controllers/projects/clusters_controller_spec.rb
View file @
e1f9219a
...
...
@@ -45,6 +45,22 @@ describe Projects::ClustersController do
get
:index
,
namespace_id:
project
.
namespace
.
to_param
,
project_id:
project
,
page:
2
expect
(
assigns
(
:clusters
).
count
).
to
eq
(
1
)
end
context
'when only enabled clusters are requested'
do
it
'returns only enabled clusters'
do
get
:index
,
namespace_id:
project
.
namespace
.
to_param
,
project_id:
project
,
scope:
'enabled'
clusters
=
assigns
(
:clusters
)
expect
(
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
.
to_param
,
project_id:
project
,
scope:
'disabled'
clusters
=
assigns
(
:clusters
)
expect
(
clusters
.
all?
{
|
cluster
|
cluster
.
enabled
==
false
}).
to
eq
(
true
)
end
end
end
context
'when project does not have a cluster'
do
...
...
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