gitlab-org--gitlab-foss/features/steps/admin/logs.rb
2015-06-12 05:12:09 -04:00

11 lines
343 B
Ruby

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 'production.log'
expect(page).to have_content 'githost.log'
expect(page).to have_content 'application.log'
end
end