ddf892b9f2
Make it easier to override the set of loggers, by putting them in a separate method. Also modify spec so it tests for links, instead of checking for regular text.
17 lines
399 B
Ruby
17 lines
399 B
Ruby
require 'spec_helper'
|
|
|
|
describe 'Admin browses logs' do
|
|
before do
|
|
sign_in(create(:admin))
|
|
end
|
|
|
|
it 'shows available log files' do
|
|
visit admin_logs_path
|
|
|
|
expect(page).to have_link 'application.log'
|
|
expect(page).to have_link 'githost.log'
|
|
expect(page).to have_link 'test.log'
|
|
expect(page).to have_link 'sidekiq.log'
|
|
expect(page).to have_link 'repocheck.log'
|
|
end
|
|
end
|