diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2012-01-10 01:47:07 -0300 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2012-01-10 02:00:20 -0300 |
commit | 30f9af9c092c57c7aca187a9f8c87d58661e8fa8 (patch) | |
tree | df8b494cacd89981d6af88c0674b0c9cd902fe28 /actionpack/test/controller | |
parent | 2babe0ac45e29ba56a36dd9e6e70431993546f46 (diff) | |
download | rails-30f9af9c092c57c7aca187a9f8c87d58661e8fa8.tar.gz rails-30f9af9c092c57c7aca187a9f8c87d58661e8fa8.tar.bz2 rails-30f9af9c092c57c7aca187a9f8c87d58661e8fa8.zip |
Fix ActionController::TestCase::Behavior.head
Diffstat (limited to 'actionpack/test/controller')
-rw-r--r-- | actionpack/test/controller/test_case_test.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/actionpack/test/controller/test_case_test.rb b/actionpack/test/controller/test_case_test.rb index 73b860ac18..88c45683a3 100644 --- a/actionpack/test/controller/test_case_test.rb +++ b/actionpack/test/controller/test_case_test.rb @@ -187,6 +187,11 @@ XML assert_equal "document body", @response.body end + def test_head + head :test_params + assert_equal 200, @response.status + end + def test_process_without_flash process :set_flash assert_equal '><', flash['test'] |