about summary refs log tree commit diff
path: root/spec/views/about/_links.html.haml_spec.rb
blob: a5d2c89244def56042c12bc3f676db3d6bb9aa8b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# frozen_string_literal: true

require 'rails_helper'

describe 'about/_links.html.haml' do
  it 'does not show sign in link when signed in' do
    instance_presenter = double(:instance_presenter, open_registrations: true)
    assign(:instance_presenter, instance_presenter)
    allow(view).to receive(:user_signed_in?).and_return(true)
    render 'about/links', instance: InstancePresenter.new

    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
    instance_presenter = double(:instance_presenter, open_registrations: true)
    assign(:instance_presenter, instance_presenter)
    allow(view).to receive(:user_signed_in?).and_return(false)
    render 'about/links', instance: InstancePresenter.new

    expect(rendered).to have_content(I18n.t('about.get_started'))
    expect(rendered).to have_content(I18n.t('auth.login'))
  end

  it 'shows sign in link when register closed' do
    instance_presenter = double(:instance_presenter, open_registrations: false)
    assign(:instance_presenter, instance_presenter)
    allow(view).to receive(:user_signed_in?).and_return(false)
    render

    expect(rendered).not_to have_content(I18n.t('about.get_started'))
    expect(rendered).to have_content(I18n.t('auth.login'))
  end
end