2017-04-09 14:39:41 +02: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 10:09:55 +01:00
|
|
|
expect(response.media_type).to eq "text/html"
|
2017-04-09 14:39:41 +02: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 10:09:55 +01:00
|
|
|
expect(response.media_type).to eq "text/html"
|
2017-04-09 14:39:41 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|