96 lines
3.5 KiB
Ruby
96 lines
3.5 KiB
Ruby
require "rails_helper"
|
|
|
|
describe "Custom content blocks" do
|
|
scenario "top links" do
|
|
create(:site_customization_content_block, name: "top_links", locale: "en",
|
|
body: "content for top links")
|
|
create(:site_customization_content_block, name: "top_links", locale: "es",
|
|
body: "contenido para top links")
|
|
|
|
visit "/?locale=en"
|
|
|
|
expect(page).to have_content("content for top links")
|
|
expect(page).not_to have_content("contenido para top links")
|
|
|
|
visit "/?locale=es"
|
|
|
|
expect(page).to have_content("contenido para top links")
|
|
expect(page).not_to have_content("content for top links")
|
|
end
|
|
|
|
scenario "footer" do
|
|
create(:site_customization_content_block, name: "footer", locale: "en",
|
|
body: "content for footer")
|
|
create(:site_customization_content_block, name: "footer", locale: "es",
|
|
body: "contenido para footer")
|
|
|
|
visit "/?locale=en"
|
|
|
|
within ".social" do
|
|
expect(page).to have_content("content for footer")
|
|
expect(page).not_to have_content("contenido para footer")
|
|
end
|
|
|
|
visit "/?locale=es"
|
|
|
|
within ".social" do
|
|
expect(page).to have_content("contenido para footer")
|
|
expect(page).not_to have_content("content for footer")
|
|
end
|
|
end
|
|
|
|
scenario "footer_legal content block" do
|
|
create(:site_customization_content_block, name: "footer_legal", locale: "en",
|
|
body: "legal content for footer")
|
|
create(:site_customization_content_block, name: "footer_legal", locale: "es",
|
|
body: "contenido legal para el footer")
|
|
|
|
visit "/?locale=en"
|
|
|
|
within ".legal" do
|
|
expect(page).to have_content("legal content for footer")
|
|
expect(page).not_to have_content("contenido legal para el footer")
|
|
end
|
|
|
|
visit "/?locale=es"
|
|
within ".legal" do
|
|
expect(page).to have_content("contenido legal para el footer")
|
|
expect(page).not_to have_content("legal content for footer")
|
|
end
|
|
end
|
|
|
|
scenario "main navigation left" do
|
|
create(:site_customization_content_block, name: "subnavigation_left", locale: "en",
|
|
body: "content for left links")
|
|
create(:site_customization_content_block, name: "subnavigation_left", locale: "es",
|
|
body: "contenido para left links")
|
|
|
|
visit "/?locale=en"
|
|
|
|
expect(page).to have_content("content for left links")
|
|
expect(page).not_to have_content("contenido para left links")
|
|
|
|
visit "/?locale=es"
|
|
|
|
expect(page).to have_content("contenido para left links")
|
|
expect(page).not_to have_content("content for left links")
|
|
end
|
|
|
|
scenario "main navigation right" do
|
|
create(:site_customization_content_block, name: "subnavigation_right", locale: "en",
|
|
body: "content for right links")
|
|
create(:site_customization_content_block, name: "subnavigation_right", locale: "es",
|
|
body: "contenido para right links")
|
|
|
|
visit "/?locale=en"
|
|
|
|
expect(page).to have_content("content for right links")
|
|
expect(page).not_to have_content("contenido para right links")
|
|
|
|
visit "/?locale=es"
|
|
|
|
expect(page).to have_content("contenido para right links")
|
|
expect(page).not_to have_content("content for left links")
|
|
end
|
|
end
|