gitlab-org--gitlab-foss/features/steps/admin/logs.rb

12 lines
331 B
Ruby
Raw Normal View History

class Spinach::Features::AdminLogs < Spinach::FeatureSteps
2013-01-09 17:38:27 +00:00
include SharedAuthentication
include SharedPaths
include SharedAdmin
step 'I should see tabs with available logs' do
2013-01-09 17:38:27 +00:00
page.should have_content 'production.log'
page.should have_content 'githost.log'
page.should have_content 'application.log'
end
end