about summary refs log tree commit diff
path: root/spec/views/about/_contact.html.haml_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/views/about/_contact.html.haml_spec.rb')
-rw-r--r--spec/views/about/_contact.html.haml_spec.rb6
1 files changed, 5 insertions, 1 deletions
diff --git a/spec/views/about/_contact.html.haml_spec.rb b/spec/views/about/_contact.html.haml_spec.rb
index 2a6decbce..d2e7a4598 100644
--- a/spec/views/about/_contact.html.haml_spec.rb
+++ b/spec/views/about/_contact.html.haml_spec.rb
@@ -3,7 +3,11 @@
 require 'rails_helper'
 
 describe 'about/_contact.html.haml' do
-  describe 'the contact account' do
+  describe 'the contact account', without_verify_partial_doubles: true do
+    before do
+      allow(view).to receive(:display_name).and_return('Display Name!')
+    end
+
     it 'shows info when account is present' do
       account = Account.new(username: 'admin')
       contact = double(contact_account: account, site_contact_email: '')