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/project_tab.rb')
-rw-r--r--features/steps/shared/project_tab.rb48
1 files changed, 0 insertions, 48 deletions
diff --git a/features/steps/shared/project_tab.rb b/features/steps/shared/project_tab.rb
deleted file mode 100644
index c5aed19331c..00000000000
--- a/features/steps/shared/project_tab.rb
+++ /dev/null
@@ -1,48 +0,0 @@
-require_relative 'active_tab'
-
-module SharedProjectTab
- include Spinach::DSL
- include SharedActiveTab
-
- step 'the active main tab should be Home' do
- ensure_active_main_tab('Project')
- end
-
- step 'the active main tab should be Files' do
- ensure_active_main_tab('Files')
- end
-
- step 'the active main tab should be Commits' do
- ensure_active_main_tab('Commits')
- end
-
- step 'the active main tab should be Network' do
- ensure_active_main_tab('Network')
- end
-
- step 'the active main tab should be Graphs' do
- ensure_active_main_tab('Graphs')
- 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 Snippets' do
- ensure_active_main_tab('Snippets')
- end
-
- step 'the active main tab should be Wiki' do
- ensure_active_main_tab('Wiki')
- end
-
- step 'the active main tab should be Settings' do
- within '.nav-sidebar' do
- page.should have_content('Back to project')
- end
- end
-end