summaryrefslogtreecommitdiff
path: root/features/steps/admin/logs.rb
blob: 904e54686558337f876016f1c4ff1f8f73776e5a (plain)
1
2
3
4
5
6
7
8
9
10
11
class Spinach::Features::AdminLogs < Spinach::FeatureSteps
  include SharedAuthentication
  include SharedPaths
  include SharedAdmin

  step 'I should see tabs with available logs' do
    page.should have_content 'production.log'
    page.should have_content 'githost.log'
    page.should have_content 'application.log'
  end
end