You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
609 B
21 lines
609 B
# frozen_string_literal: true |
|
|
|
require 'rails_helper' |
|
|
|
describe 'about/_links.html.haml' do |
|
it 'does not show sign in link when signed in' do |
|
allow(view).to receive(:user_signed_in?).and_return(true) |
|
render |
|
|
|
expect(rendered).to have_content(I18n.t('about.get_started')) |
|
expect(rendered).not_to have_content(I18n.t('auth.login')) |
|
end |
|
|
|
it 'shows sign in link when signed out' do |
|
allow(view).to receive(:user_signed_in?).and_return(false) |
|
render |
|
|
|
expect(rendered).to have_content(I18n.t('about.get_started')) |
|
expect(rendered).to have_content(I18n.t('auth.login')) |
|
end |
|
end
|
|
|