discourse/spec/requests/exceptions_controller_spec.rb
Bianca Nenciu 985afe1092
FEATURE: Add page title to 404 pages (#16846)
The title had to be added both on the 404 page generated by the server
side, displayed when the user reaches a bad page directly and the 404
page rendered by Ember when a user reaches a missing topic while
navigating the forum.
2022-05-17 18:37:43 +03:00

41 lines
820 B
Ruby

# frozen_string_literal: true
RSpec.describe ExceptionsController do
describe "#not_found" do
it "should return the right response" do
get "/404"
expect(response.status).to eq(404)
expect(response.body).to have_tag(
"title",
text: "#{I18n.t("page_not_found.page_title")} - #{SiteSetting.title}"
)
expect(response.body).to have_tag(
"img",
with: {
src: SiteSetting.site_logo_url
}
)
end
describe "text site logo" do
before do
SiteSetting.logo = nil
end
it "should return the right response" do
get "/404"
expect(response.status).to eq(404)
expect(response.body).to have_tag(
"h2",
text: SiteSetting.title
)
end
end
end
end