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/admin/logs.rb')
-rw-r--r--features/steps/admin/logs.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/features/steps/admin/logs.rb b/features/steps/admin/logs.rb
new file mode 100644
index 00000000000..83958545c4d
--- /dev/null
+++ b/features/steps/admin/logs.rb
@@ -0,0 +1,11 @@
+class AdminLogs < Spinach::FeatureSteps
+ include SharedAuthentication
+ include SharedPaths
+ include SharedAdmin
+
+ Then 'I should see tabs with available logs' do
+ page.should have_content 'production.log'
+ page.should have_content 'githost.log'
+ page.should have_content 'application.log'
+ end
+end