* Add settings_community_contents model * Add settings_communities model * Update usage * Add controller and update code * Add e2e test * Add data update script * Update schema.rb * Fix specs * PR feedback * Remove experience_* from Settings::Community * Update spec * Fix spec
8 lines
234 B
Ruby
8 lines
234 B
Ruby
require "rails_helper"
|
|
|
|
RSpec.describe "stories/_sign_in_invitation.html.erb", type: :view do
|
|
it "has the community member label" do
|
|
render
|
|
expect(rendered).to have_text(Settings::Community.member_label.pluralize)
|
|
end
|
|
end
|