* Add community_member_description, tagline and mascot_image_url to SiteConfig * extra space * Add mascot_image_description field to SiteConfig * Fix test
8 lines
189 B
Ruby
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
|