2014-09-22 10:30:25 -04:00
|
|
|
class Spinach::Features::AdminLogs < Spinach::FeatureSteps
|
2013-01-09 12:38:27 -05:00
|
|
|
include SharedAuthentication
|
|
|
|
include SharedPaths
|
|
|
|
include SharedAdmin
|
|
|
|
|
2014-09-21 17:40:22 -04:00
|
|
|
step 'I should see tabs with available logs' do
|
2015-06-12 00:44:13 -04:00
|
|
|
expect(page).to have_content 'production.log'
|
|
|
|
expect(page).to have_content 'githost.log'
|
|
|
|
expect(page).to have_content 'application.log'
|
2013-01-09 12:38:27 -05:00
|
|
|
end
|
|
|
|
end
|