2023-02-22 01:55:31 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2023-02-18 23:38:14 +01:00
|
|
|
require 'rails_helper'
|
2017-04-09 14:39:41 +02:00
|
|
|
|
2024-09-04 07:12:25 +02:00
|
|
|
RSpec.describe 'The catch all route' do
|
2023-02-18 23:38:14 +01:00
|
|
|
describe 'with a simple value' do
|
|
|
|
it 'returns a 404 page as html' do
|
|
|
|
get '/test'
|
2017-04-09 14:39:41 +02:00
|
|
|
|
2023-02-20 03:16:40 +01:00
|
|
|
expect(response).to have_http_status 404
|
2023-02-18 23:38:14 +01:00
|
|
|
expect(response.media_type).to eq 'text/html'
|
2017-04-09 14:39:41 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-02-18 23:38:14 +01:00
|
|
|
describe 'with an implied format' do
|
|
|
|
it 'returns a 404 page as html' do
|
|
|
|
get '/test.test'
|
2017-04-09 14:39:41 +02:00
|
|
|
|
2023-02-20 03:16:40 +01:00
|
|
|
expect(response).to have_http_status 404
|
2023-02-18 23:38:14 +01:00
|
|
|
expect(response.media_type).to eq 'text/html'
|
2017-04-09 14:39:41 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|