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
Léo-Paul Géneau
gitlab-ce
Commits
d5efd17d
Commit
d5efd17d
authored
Jun 15, 2016
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix admin active tab tests
Signed-off-by:
Dmitriy Zaporozhets
<
dmitriy.zaporozhets@gmail.com
>
parent
f1245bde
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
32 additions
and
26 deletions
+32
-26
features/admin/active_tab.feature
features/admin/active_tab.feature
+16
-6
features/steps/admin/active_tab.rb
features/steps/admin/active_tab.rb
+16
-20
No files found.
features/admin/active_tab.feature
View file @
d5efd17d
...
...
@@ -5,28 +5,36 @@ Feature: Admin Active Tab
Scenario
:
On Admin Home
Given
I visit admin page
Then
the active main tab should be
Home
Then
the active main tab should be
Overview
And
no other main tabs should be active
Scenario
:
On Admin Projects
Given
I visit admin projects page
Then
the active main tab should be Projects
Then
the active main tab should be Overview
And
the active sub tab should be Projects
And
no other main tabs should be active
And
no other sub tabs should be active
Scenario
:
On Admin Groups
Given
I visit admin groups page
Then
the active main tab should be Groups
Then
the active main tab should be Overview
And
the active sub tab should be Groups
And
no other main tabs should be active
And
no other sub tabs should be active
Scenario
:
On Admin Users
Given
I visit admin users page
Then
the active main tab should be Users
Then
the active main tab should be Overview
And
the active sub tab should be Users
And
no other main tabs should be active
And
no other sub tabs should be active
Scenario
:
On Admin Logs
Given
I visit admin logs page
Then
the active main tab should be Logs
Then
the active main tab should be Monitoring
And
the active sub tab should be Logs
And
no other main tabs should be active
And
no other sub tabs should be active
Scenario
:
On Admin Messages
Given
I visit admin messages page
...
...
@@ -40,5 +48,7 @@ Feature: Admin Active Tab
Scenario
:
On Admin Resque
Given
I visit admin Resque page
Then
the active main tab should be Resque
Then
the active main tab should be Monitoring
And
the active sub tab should be Resque
And
no other main tabs should be active
And
no other sub tabs should be active
features/steps/admin/active_tab.rb
View file @
d5efd17d
class
Spinach::Features::AdminActiveTab
<
Spinach
::
FeatureSteps
include
SharedAuthentication
include
SharedPaths
include
Shared
Sidebar
ActiveTab
include
SharedActiveTab
step
'the active main tab should be
Home
'
do
step
'the active main tab should be
Overview
'
do
ensure_active_main_tab
(
'Overview'
)
end
step
'the active
main
tab should be Projects'
do
ensure_active_
main
_tab
(
'Projects'
)
step
'the active
sub
tab should be Projects'
do
ensure_active_
sub
_tab
(
'Projects'
)
end
step
'the active
main
tab should be Groups'
do
ensure_active_
main
_tab
(
'Groups'
)
step
'the active
sub
tab should be Groups'
do
ensure_active_
sub
_tab
(
'Groups'
)
end
step
'the active main tab should be Users'
do
ensure_active_main_tab
(
'Users'
)
end
step
'the active main tab should be Logs'
do
ensure_active_main_tab
(
'Logs'
)
step
'the active sub tab should be Users'
do
ensure_active_sub_tab
(
'Users'
)
end
step
'the active main tab should be Hooks'
do
ensure_active_main_tab
(
'Hooks'
)
end
step
'the active main tab should be
Resque
'
do
ensure_active_main_tab
(
'
Background Jobs
'
)
step
'the active main tab should be
Monitoring
'
do
ensure_active_main_tab
(
'
Monitoring
'
)
end
step
'the active
main tab should be Messages
'
do
ensure_active_
main_tab
(
'Message
s'
)
step
'the active
sub tab should be Resque
'
do
ensure_active_
sub_tab
(
'Background Job
s'
)
end
step
'
no other main tabs should be active
'
do
e
xpect
(
page
).
to
have_selector
(
'.nav-sidebar > li.active'
,
count:
1
)
step
'
the active sub tab should be Logs
'
do
e
nsure_active_sub_tab
(
'Logs'
)
end
def
ensure_active_main_tab
(
content
)
e
xpect
(
find
(
'.nav-sidebar > li.active'
)).
to
have_content
(
content
)
step
'the active main tab should be Messages'
do
e
nsure_active_main_tab
(
'Messages'
)
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