mirror of
				https://github.com/lunaisnotaboy/mastodon.git
				synced 2025-11-04 06:45:01 +00:00 
			
		
		
		
	A request to `/test` would show the custom 404 page, but a request to `/test.test` would return a 404 with an empty body. This change ignores the format on incoming catch all route requests, so that the html 404 page is returned on these requests.
		
			
				
	
	
		
			22 lines
		
	
	
		
			475 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			475 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
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
 | 
						|
      expect(response.content_type).to eq "text/html"
 | 
						|
    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
 | 
						|
      expect(response.content_type).to eq "text/html"
 | 
						|
    end
 | 
						|
  end
 | 
						|
end
 |