diff options
author | José Valim <jose.valim@gmail.com> | 2012-01-09 22:51:03 -0800 |
---|---|---|
committer | José Valim <jose.valim@gmail.com> | 2012-01-09 22:51:03 -0800 |
commit | a9056263f6d3419536419d095ff146b5b994941e (patch) | |
tree | b3c0cf7318835ace650dba360cc6e09c009e6bd6 /actionpack/test | |
parent | 2babe0ac45e29ba56a36dd9e6e70431993546f46 (diff) | |
parent | 3f38d8442e2c365c6625c647d77f7b31f4da0cd1 (diff) | |
download | rails-a9056263f6d3419536419d095ff146b5b994941e.tar.gz rails-a9056263f6d3419536419d095ff146b5b994941e.tar.bz2 rails-a9056263f6d3419536419d095ff146b5b994941e.zip |
Merge pull request #4395 from rafaelfranca/fix_ac_test_case
Fix ActionController::TestCase::Behavior#head
Diffstat (limited to 'actionpack/test')
-rw-r--r-- | actionpack/test/controller/test_case_test.rb | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/actionpack/test/controller/test_case_test.rb b/actionpack/test/controller/test_case_test.rb index 73b860ac18..34b06df8d8 100644 --- a/actionpack/test/controller/test_case_test.rb +++ b/actionpack/test/controller/test_case_test.rb @@ -171,22 +171,31 @@ XML assert_equal params.to_query, @response.body end - + def test_document_body_and_params_with_post post :test_params, :id => 1 assert_equal("{\"id\"=>\"1\", \"controller\"=>\"test_test/test\", \"action\"=>\"test_params\"}", @response.body) end - + def test_document_body_with_post post :render_body, "document body" assert_equal "document body", @response.body end - + def test_document_body_with_put put :render_body, "document body" assert_equal "document body", @response.body end + def test_head + head :test_params + assert_equal 200, @response.status + end + + def test_head_params_as_sting + assert_raise(NoMethodError) { head :test_params, "document body", :id => 10 } + end + def test_process_without_flash process :set_flash assert_equal '><', flash['test'] @@ -245,7 +254,7 @@ XML process :test_uri, "GET", :id => 7 assert_equal "/test_test/test/test_uri/7", @response.body end - + def test_process_with_old_api assert_deprecated do process :test_uri, :id => 7 |