Fix typo for "instagram"

This typo was accidentally introduced in commit 3b00f3c141.
This commit is contained in:
taitus
2022-01-28 14:27:02 +01:00
parent 3e89a1dd53
commit 291b478050
2 changed files with 12 additions and 2 deletions

View File

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

View File

@@ -3,11 +3,21 @@ require "rails_helper"
describe Layout::SocialComponent do describe Layout::SocialComponent do
describe "#render?" do describe "#render?" do
it "renders when a social setting is present" 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 render_inline Layout::SocialComponent.new
expect(page).to have_css "ul" 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 end
it "renders when a content block is present" do it "renders when a content block is present" do