Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'features/steps/shared/active_tab.rb')
-rw-r--r--features/steps/shared/active_tab.rb47
1 files changed, 0 insertions, 47 deletions
diff --git a/features/steps/shared/active_tab.rb b/features/steps/shared/active_tab.rb
deleted file mode 100644
index 9beb688bd16..00000000000
--- a/features/steps/shared/active_tab.rb
+++ /dev/null
@@ -1,47 +0,0 @@
-module SharedActiveTab
- include Spinach::DSL
-
- def ensure_active_main_tab(content)
- find('.nav-sidebar > li.active').should have_content(content)
- end
-
- def ensure_active_sub_tab(content)
- find('div.content ul.nav-tabs li.active').should have_content(content)
- end
-
- def ensure_active_sub_nav(content)
- find('.sidebar-subnav > li.active').should have_content(content)
- end
-
- step 'no other main tabs should be active' do
- page.should have_selector('.nav-sidebar > li.active', count: 1)
- end
-
- step 'no other sub tabs should be active' do
- page.should have_selector('div.content ul.nav-tabs li.active', count: 1)
- end
-
- step 'no other sub navs should be active' do
- page.should have_selector('.sidebar-subnav > li.active', count: 1)
- end
-
- step 'the active main tab should be Home' do
- ensure_active_main_tab('Your Projects')
- end
-
- step 'the active main tab should be Projects' do
- ensure_active_main_tab('Projects')
- end
-
- step 'the active main tab should be Issues' do
- ensure_active_main_tab('Issues')
- end
-
- step 'the active main tab should be Merge Requests' do
- ensure_active_main_tab('Merge Requests')
- end
-
- step 'the active main tab should be Help' do
- ensure_active_main_tab('Help')
- end
-end