gitlab-org--gitlab-foss/features/steps/admin/logs.rb
2014-09-22 10:01:50 +02:00

11 lines
312 B
Ruby

class AdminLogs < Spinach::FeatureSteps
include SharedAuthentication
include SharedPaths
include SharedAdmin
step '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