Use around hook to restore context in ApplicationHelper spec (#3432)
parent
c49ff7395e
commit
2d39560dc1
|
@ -100,6 +100,12 @@ describe ApplicationHelper do
|
||||||
end
|
end
|
||||||
|
|
||||||
describe 'title' do
|
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
|
it 'returns site title on production enviroment' do
|
||||||
Setting.site_title = 'site title'
|
Setting.site_title = 'site title'
|
||||||
expect(Rails.env).to receive(:production?).and_return(true)
|
expect(Rails.env).to receive(:production?).and_return(true)
|
||||||
|
|
Reference in New Issue