summaryrefslogtreecommitdiff
path: root/features/steps/admin/logs.rb
blob: f9e49588c7541c9ffddba14b2171ce70201d3a27 (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
    expect(page).to have_content 'production.log'
    expect(page).to have_content 'githost.log'
    expect(page).to have_content 'application.log'
  end
end