diff options
author | Angelo Capilleri <capilleri@yahoo.com> | 2012-12-22 09:18:01 +0100 |
---|---|---|
committer | Angelo Capilleri <capilleri@yahoo.com> | 2012-12-22 09:18:08 +0100 |
commit | c2267db383fb42e2e3c2abdbd58be6638908fb0f (patch) | |
tree | a8d5e887c6aec323bd45c21f05316022dcf48ed6 /actionpack/test/controller | |
parent | f9da785d0b1b22317cfca25c15fb555e9016accb (diff) | |
download | rails-c2267db383fb42e2e3c2abdbd58be6638908fb0f.tar.gz rails-c2267db383fb42e2e3c2abdbd58be6638908fb0f.tar.bz2 rails-c2267db383fb42e2e3c2abdbd58be6638908fb0f.zip |
return Mime::NullType if format is unknown
If a request has an unknown format, the methods html?, xml?, json? ...etc
not raise an Exception.
This patch add a class Mime::NullType, that is returned when request.format is unknown
and it responds false to the methods that ends with '?' and true to 'nil?'.
It refers to #7837, this issue is considered a improvement not a bug.
Diffstat (limited to 'actionpack/test/controller')
-rw-r--r-- | actionpack/test/controller/send_file_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/controller/send_file_test.rb b/actionpack/test/controller/send_file_test.rb index 5e9053da5b..8ecc1c7d73 100644 --- a/actionpack/test/controller/send_file_test.rb +++ b/actionpack/test/controller/send_file_test.rb @@ -144,7 +144,7 @@ class SendFileTest < ActionController::TestCase } @controller.headers = {} - assert_raise(ArgumentError){ @controller.send(:send_file_headers!, options) } + assert !@controller.send(:send_file_headers!, options) end def test_send_file_headers_guess_type_from_extension |