diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2015-09-23 16:00:38 -0700 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2015-09-23 16:00:38 -0700 |
commit | 53549a7585b451f0d1d6b30a4529361138e56796 (patch) | |
tree | dabbb25d5e54d16c284ea68b6cb58c5f14a6cd9b | |
parent | b5e36dd00a6feedb79cf84b921a04ce80172b6f4 (diff) | |
download | rails-53549a7585b451f0d1d6b30a4529361138e56796.tar.gz rails-53549a7585b451f0d1d6b30a4529361138e56796.tar.bz2 rails-53549a7585b451f0d1d6b30a4529361138e56796.zip |
type of response should not matter
-rw-r--r-- | actionpack/test/controller/live_stream_test.rb | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/actionpack/test/controller/live_stream_test.rb b/actionpack/test/controller/live_stream_test.rb index 94888cb125..ab0c44cce5 100644 --- a/actionpack/test/controller/live_stream_test.rb +++ b/actionpack/test/controller/live_stream_test.rb @@ -262,12 +262,6 @@ module ActionController assert_equal "hello world", @response.body end - def test_set_response! - @controller.set_response!(@request) - assert_kind_of(Live::Response, @controller.response) - assert_equal @request, @controller.response.request - end - def test_write_to_stream @controller = TestController.new get :basic_stream |