discourse/spec/requests/exceptions_controller_spec.rb
David Taylor c9dab6fd08
DEV: Automatically require 'rails_helper' in all specs (#16077)
It's very easy to forget to add `require 'rails_helper'` at the top of every core/plugin spec file, and omissions can cause some very confusing/sporadic errors.

By setting this flag in `.rspec`, we can remove the need for `require 'rails_helper'` entirely.
2022-03-01 17:50:50 +00:00

36 lines
675 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(
"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