diff options
author | Pratik Naik <pratiknaik@gmail.com> | 2008-12-21 19:04:48 +0000 |
---|---|---|
committer | Pratik Naik <pratiknaik@gmail.com> | 2008-12-21 19:04:48 +0000 |
commit | f5b7f0911bc507673afe6a045176e6e3c7305d74 (patch) | |
tree | 2b707bf2eb60941e748bc7b19eec01fcb5616b63 /actionpack/test | |
parent | fab4f96bf2b6cccc95760341e4f65c4cbbb3e9f2 (diff) | |
parent | fcd58dc27a99085b161f2463988d4ee373d44ec6 (diff) | |
download | rails-f5b7f0911bc507673afe6a045176e6e3c7305d74.tar.gz rails-f5b7f0911bc507673afe6a045176e6e3c7305d74.tar.bz2 rails-f5b7f0911bc507673afe6a045176e6e3c7305d74.zip |
Merge commit 'fred/more_pullable'
Diffstat (limited to 'actionpack/test')
-rw-r--r-- | actionpack/test/controller/send_file_test.rb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/actionpack/test/controller/send_file_test.rb b/actionpack/test/controller/send_file_test.rb index c4349bfc7f..1b7486ad34 100644 --- a/actionpack/test/controller/send_file_test.rb +++ b/actionpack/test/controller/send_file_test.rb @@ -119,6 +119,31 @@ class SendFileTest < Test::Unit::TestCase assert_equal 'private', h['Cache-Control'] end + def test_send_file_headers_with_mime_lookup_with_symbol + options = { + :length => 1, + :type => :png + } + + @controller.headers = {} + @controller.send(:send_file_headers!, options) + + headers = @controller.headers + + assert_equal 'image/png', headers['Content-Type'] + end + + + def test_send_file_headers_with_bad_symbol + options = { + :length => 1, + :type => :this_type_is_not_registered + } + + @controller.headers = {} + assert_raises(ArgumentError){ @controller.send(:send_file_headers!, options) } + end + %w(file data).each do |method| define_method "test_send_#{method}_status" do @controller.options = { :stream => false, :status => 500 } |