about summary refs log tree commit diff
path: root/spec/views
diff options
context:
space:
mode:
authorYamagishi Kazutoshi <ykzts@desire.sh>2017-04-28 23:44:57 +0900
committerEugen Rochko <eugen@zeonfederated.com>2017-04-28 16:44:57 +0200
commit71e73e36cde53950e243f458fe5130271b62705e (patch)
tree44660816de47466929812ab61be8131b5c688d3a /spec/views
parent01c206326f51867d56d9b07bc89ab60049e75aec (diff)
Fix spec for hide get started (#2585)
Diffstat (limited to 'spec/views')
-rw-r--r--spec/views/about/_links.html.haml_spec.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/spec/views/about/_links.html.haml_spec.rb b/spec/views/about/_links.html.haml_spec.rb
index 5d3950dce..5026fd8f8 100644
--- a/spec/views/about/_links.html.haml_spec.rb
+++ b/spec/views/about/_links.html.haml_spec.rb
@@ -4,6 +4,8 @@ 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
 
@@ -12,10 +14,22 @@ describe 'about/_links.html.haml' do
   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
 
     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