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