2017-04-09 22:39:41 +10:00
|
|
|
require "rails_helper"
|
|
|
|
|
|
|
|
describe "The catch all route" do
|
|
|
|
describe "with a simple value" do
|
|
|
|
it "returns a 404 page as html" do
|
|
|
|
get "/test"
|
|
|
|
|
|
|
|
expect(response.status).to eq 404
|
2021-03-17 20:09:55 +11:00
|
|
|
expect(response.media_type).to eq "text/html"
|
2017-04-09 22:39:41 +10:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "with an implied format" do
|
|
|
|
it "returns a 404 page as html" do
|
|
|
|
get "/test.test"
|
|
|
|
|
|
|
|
expect(response.status).to eq 404
|
2021-03-17 20:09:55 +11:00
|
|
|
expect(response.media_type).to eq "text/html"
|
2017-04-09 22:39:41 +10:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|