Merge pull request #4773 from consul/instagram_typo

Fix typo for "instagram"
This commit is contained in:
Sebastia
2022-01-28 14:49:17 +01:00
committed by GitHub
2 changed files with 12 additions and 2 deletions

View File

@@ -13,7 +13,7 @@ class Layout::SocialComponent < ApplicationComponent
facebook: "https://www.facebook.com",
youtube: "https://www.youtube.com",
telegram: "https://www.telegram.me",
instragram: "https://www.instagram.com"
instagram: "https://www.instagram.com"
}.select { |name, _| setting["#{name}_handle"].present? }
end

View File

@@ -3,11 +3,21 @@ require "rails_helper"
describe Layout::SocialComponent do
describe "#render?" do
it "renders when a social setting is present" do
Setting["twitter_handle"] = "myhandle"
Setting["twitter_handle"] = "my_twitter_handle"
Setting["facebook_handle"] = "my_facebook_handle"
Setting["youtube_handle"] = "my_youtube_handle"
Setting["telegram_handle"] = "my_telegram_handle"
Setting["instagram_handle"] = "my_instagram_handle"
Setting["org_name"] = "CONSUL"
render_inline Layout::SocialComponent.new
expect(page).to have_css "ul"
expect(page).to have_link "CONSUL Twitter", href: "https://twitter.com/my_twitter_handle"
expect(page).to have_link "CONSUL Facebook", href: "https://www.facebook.com/my_facebook_handle"
expect(page).to have_link "CONSUL YouTube", href: "https://www.youtube.com/my_youtube_handle"
expect(page).to have_link "CONSUL Telegram", href: "https://www.telegram.me/my_telegram_handle"
expect(page).to have_link "CONSUL Instagram", href: "https://www.instagram.com/my_instagram_handle"
end
it "renders when a content block is present" do