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

12 lines
343 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
expect(page).to have_content 'production.log'
expect(page).to have_content 'githost.log'
expect(page).to have_content 'application.log'
2013-01-09 17:38:27 +00:00
end
end