mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-05-16 12:40:07 -04:00
15 lines
392 B
Ruby
15 lines
392 B
Ruby
require 'rails_helper'
|
|
|
|
describe 'layouts/application.html.haml', type: "view" do
|
|
before do
|
|
controller.stub(:current_user) { nil }
|
|
end
|
|
|
|
it 'includes the analytics code' do
|
|
Rails.application.config.analytics_code = '<script>console.log("foo!");</script>'
|
|
render
|
|
assert_select "script", text: 'console.log("foo!");'
|
|
rendered.should_not have_content 'script'
|
|
end
|
|
end
|