docbrown/spec/views/layouts/signup_modal.html.erb_spec.rb
Jibran Kalia 17037761a8
Add community_member_description, tagline and mascot_image_url to SiteConfig. Enable Cloudinary for primary_sticker_image (#7056) [deploy]
* Add community_member_description, tagline and mascot_image_url to SiteConfig

* extra space

* Add mascot_image_description field to SiteConfig

* Fix test
2020-04-06 18:09:45 +02:00

8 lines
189 B
Ruby

require "rails_helper"
RSpec.describe "layouts/_signup_modal.html.erb", type: :view do
it "has the tagline" do
render
expect(rendered).to have_text(SiteConfig.tagline)
end
end