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:
authorRémy Coutable <remy@rymai.me>2016-12-07 14:47:14 +0300
committerRémy Coutable <remy@rymai.me>2016-12-07 14:47:14 +0300
commit0fc1e9a8e00926ba2c65f38a68ffd4e21c5844ba (patch)
tree504593db341b35397475b3e6dee9337bb51ecf85 /features
parent9e5d9f017968eafc6e68721e05722a0876bdda39 (diff)
parente16bc50d363fe65bbceb8aed39a0e19ec91b3329 (diff)
Merge branch 'move-admin-logs-spinach-test-to-rspec' into 'master'
Move admin logs spinach test to RSpec https://gitlab.com/gitlab-org/gitlab-ce/issues/23036 See merge request !7945
Diffstat (limited to 'features')
-rw-r--r--features/admin/logs.feature8
-rw-r--r--features/steps/admin/logs.rb11
2 files changed, 0 insertions, 19 deletions
diff --git a/features/admin/logs.feature b/features/admin/logs.feature
deleted file mode 100644
index ceb3bc34927..00000000000
--- a/features/admin/logs.feature
+++ /dev/null
@@ -1,8 +0,0 @@
-@admin
-Feature: Admin Logs
- Background:
- Given I sign in as an admin
-
- Scenario: On Admin Logs
- Given I visit admin logs page
- Then I should see tabs with available logs
diff --git a/features/steps/admin/logs.rb b/features/steps/admin/logs.rb
deleted file mode 100644
index 63881d69146..00000000000
--- a/features/steps/admin/logs.rb
+++ /dev/null
@@ -1,11 +0,0 @@
-class Spinach::Features::AdminLogs < Spinach::FeatureSteps
- include SharedAuthentication
- include SharedPaths
- include SharedAdmin
-
- step 'I should see tabs with available logs' do
- expect(page).to have_content 'test.log'
- expect(page).to have_content 'githost.log'
- expect(page).to have_content 'application.log'
- end
-end