mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 19:37:55 +08:00
c9dab6fd08
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.
36 lines
675 B
Ruby
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
|