summaryrefslogtreecommitdiff
path: root/features/steps
diff options
context:
space:
mode:
authorRémy Coutable <remy@rymai.me>2016-12-15 16:52:15 +0000
committerRémy Coutable <remy@rymai.me>2016-12-15 16:52:15 +0000
commita2ee24dc59623cedc6785f4881c9098755698dc2 (patch)
treee777cd59c8e1776d850dd55be9f85b8481dfde32 /features/steps
parent18c58ed3fd635cd148f4c66b9c0cc825799abcbd (diff)
parent4bb3c4644734a8f23bcfbe97018431f3a2bafedb (diff)
downloadgitlab-ce-a2ee24dc59623cedc6785f4881c9098755698dc2.tar.gz
Merge branch 'move-admin-active-tab-spinach-tests-to-rspec' into 'master'
Move admin active tab spinach tests to RSpec See merge request !8037
Diffstat (limited to 'features/steps')
-rw-r--r--features/steps/admin/active_tab.rb41
1 files changed, 0 insertions, 41 deletions
diff --git a/features/steps/admin/active_tab.rb b/features/steps/admin/active_tab.rb
deleted file mode 100644
index 9b1689a8198..00000000000
--- a/features/steps/admin/active_tab.rb
+++ /dev/null
@@ -1,41 +0,0 @@
-class Spinach::Features::AdminActiveTab < Spinach::FeatureSteps
- include SharedAuthentication
- include SharedPaths
- include SharedActiveTab
-
- step 'the active main tab should be Overview' do
- ensure_active_main_tab('Overview')
- end
-
- step 'the active sub tab should be Projects' do
- ensure_active_sub_tab('Projects')
- end
-
- step 'the active sub tab should be Groups' do
- ensure_active_sub_tab('Groups')
- end
-
- 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 Monitoring' do
- ensure_active_main_tab('Monitoring')
- end
-
- step 'the active sub tab should be Resque' do
- ensure_active_sub_tab('Background Jobs')
- end
-
- step 'the active sub tab should be Logs' do
- ensure_active_sub_tab('Logs')
- end
-
- step 'the active main tab should be Messages' do
- ensure_active_main_tab('Messages')
- end
-end