From: Akihiko Odaki Date: Tue, 30 May 2017 10:29:48 +0000 (+0900) Subject: Use around hook to restore context in ApplicationHelper spec (#3432) X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=2d39560dc1811c29c1663b11a4a351089898e244;p=mastodon.git Use around hook to restore context in ApplicationHelper spec (#3432) --- diff --git a/spec/helpers/application_helper_spec.rb b/spec/helpers/application_helper_spec.rb index a3903464b..7b875e21f 100644 --- a/spec/helpers/application_helper_spec.rb +++ b/spec/helpers/application_helper_spec.rb @@ -100,6 +100,12 @@ describe ApplicationHelper do end describe 'title' do + around do |example| + site_title = Setting.site_title + example.run + Setting.site_title = site_title + end + it 'returns site title on production enviroment' do Setting.site_title = 'site title' expect(Rails.env).to receive(:production?).and_return(true)