2015-04-26 12:48:37 +05:30
|
|
|
class Spinach::Features::AdminLogs < Spinach::FeatureSteps
|
2014-09-02 18:07:02 +05:30
|
|
|
include SharedAuthentication
|
|
|
|
include SharedPaths
|
|
|
|
include SharedAdmin
|
|
|
|
|
2015-04-26 12:48:37 +05:30
|
|
|
step 'I should see tabs with available logs' do
|
2015-09-11 14:41:01 +05:30
|
|
|
expect(page).to have_content 'production.log'
|
|
|
|
expect(page).to have_content 'githost.log'
|
|
|
|
expect(page).to have_content 'application.log'
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
end
|