From 9aaf3218d24bb8b3eb1de697243c13637398ab46 Mon Sep 17 00:00:00 2001 From: David Yip Date: Fri, 28 Jul 2017 18:25:30 -0500 Subject: Add commit_hash to instance presenter double (#107) glitch-soc's about page grabs said value from InstancePresenter; the double needs to emulate that. --- spec/views/about/show.html.haml_spec.rb | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'spec/views/about/show.html.haml_spec.rb') diff --git a/spec/views/about/show.html.haml_spec.rb b/spec/views/about/show.html.haml_spec.rb index c0ead6349..d460adfe5 100644 --- a/spec/views/about/show.html.haml_spec.rb +++ b/spec/views/about/show.html.haml_spec.rb @@ -3,6 +3,8 @@ require 'rails_helper' describe 'about/show.html.haml', without_verify_partial_doubles: true do + let(:commit_hash) { '8925731c9869f55780644304e4420a1998e52607' } + before do allow(view).to receive(:site_hostname).and_return('example.com') allow(view).to receive(:site_title).and_return('example site') @@ -14,7 +16,9 @@ describe 'about/show.html.haml', without_verify_partial_doubles: true do site_description: 'something', version_number: '1.0', open_registrations: false, - closed_registrations_message: 'yes') + closed_registrations_message: 'yes', + commit_hash: commit_hash) + assign(:instance_presenter, instance_presenter) render -- cgit From dcd8ff5308d59f7bbf16ce2a62316a5af4d37da7 Mon Sep 17 00:00:00 2001 From: Ondřej Hruška Date: Fri, 6 Oct 2017 09:07:04 +0200 Subject: fix haml quotes in a bid to make travis less grumpy --- spec/views/about/show.html.haml_spec.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'spec/views/about/show.html.haml_spec.rb') diff --git a/spec/views/about/show.html.haml_spec.rb b/spec/views/about/show.html.haml_spec.rb index b2f2658de..ca59fa9e3 100644 --- a/spec/views/about/show.html.haml_spec.rb +++ b/spec/views/about/show.html.haml_spec.rb @@ -26,9 +26,9 @@ describe 'about/show.html.haml', without_verify_partial_doubles: true do header_tags = view.content_for(:header_tags) - expect(header_tags).to match(%r{}) - expect(header_tags).to match(%r{}) - expect(header_tags).to match(%r{}) - expect(header_tags).to match(%r{}) + expect(header_tags).to match(%r{}) + expect(header_tags).to match(%r{}) + expect(header_tags).to match(%r{}) + expect(header_tags).to match(%r{}) end end -- cgit