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
42d87f90
Commit
42d87f90
authored
Dec 01, 2017
by
Matija Čupić
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Refactor pagination check into separate context
parent
ea164796
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
7 deletions
+14
-7
spec/controllers/projects/clusters_controller_spec.rb
spec/controllers/projects/clusters_controller_spec.rb
+14
-7
No files found.
spec/controllers/projects/clusters_controller_spec.rb
View file @
42d87f90
...
@@ -36,14 +36,21 @@ describe Projects::ClustersController do
...
@@ -36,14 +36,21 @@ describe Projects::ClustersController do
expect
(
assigns
(
:inactive_count
)).
to
eq
(
project
.
clusters
.
disabled
.
count
)
expect
(
assigns
(
:inactive_count
)).
to
eq
(
project
.
clusters
.
disabled
.
count
)
end
end
it
'properly paginates'
do
context
'properly paginates'
do
PAGE_LIMIT
=
20
before
do
project
.
clusters
=
create_list
(
:cluster
,
PAGE_LIMIT
+
1
,
:provided_by_gcp
,
projects:
[
project
])
PAGE_LIMIT
=
20
go
project
.
clusters
=
create_list
(
:cluster
,
PAGE_LIMIT
+
1
,
:provided_by_gcp
,
projects:
[
project
])
end
it
'shows the first page'
do
go
expect
(
assigns
(
:clusters
).
count
).
to
eq
(
PAGE_LIMIT
)
end
expect
(
assigns
(
:clusters
).
count
).
to
eq
(
20
)
it
'shows the second page'
do
get
:index
,
namespace_id:
project
.
namespace
,
project_id:
project
,
page:
2
get
:index
,
namespace_id:
project
.
namespace
,
project_id:
project
,
page:
2
expect
(
assigns
(
:clusters
).
count
).
to
eq
(
1
)
expect
(
assigns
(
:clusters
).
count
).
to
eq
(
1
)
end
end
end
context
'when only enabled clusters are requested'
do
context
'when only enabled clusters are requested'
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