Welcome to mirror list, hosted at ThFree Co, Russian Federation.

admin_logs.rb « admin « steps « features - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 83958545c4d15a8599bfcded68ec9baa3447cb9b (plain)
1
2
3
4
5
6
7
8
9
10
11
class AdminLogs < Spinach::FeatureSteps
  include SharedAuthentication
  include SharedPaths
  include SharedAdmin

  Then '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