about summary refs log tree commit diff
path: root/spec/views/about/_links.html.haml_spec.rb
diff options
context:
space:
mode:
authorMatt Jankowski <mjankowski@thoughtbot.com>2017-04-15 07:33:25 -0400
committerEugen <eugen@zeonfederated.com>2017-04-15 13:33:25 +0200
commit3b8908c11470f63d846c631f26cf45f9a4b28663 (patch)
treedf65177050bc032517ec49f9bc81a288e80e526c /spec/views/about/_links.html.haml_spec.rb
parent7b10794afb07c09719756d430c29b9d2e96cffac (diff)
About page contact email (#1839)
* Correct site_contact_email typo

* Separate about more page into partials, add specs
Diffstat (limited to 'spec/views/about/_links.html.haml_spec.rb')
-rw-r--r--spec/views/about/_links.html.haml_spec.rb21
1 files changed, 21 insertions, 0 deletions
diff --git a/spec/views/about/_links.html.haml_spec.rb b/spec/views/about/_links.html.haml_spec.rb
new file mode 100644
index 000000000..5d3950dce
--- /dev/null
+++ b/spec/views/about/_links.html.haml_spec.rb
@@ -0,0 +1,21 @@
+# 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