diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2013-12-08 13:38:01 -0800 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2013-12-08 13:38:01 -0800 |
commit | 186161148a189839a1e0924043f068a8d155ce69 (patch) | |
tree | 405a3150a00e6517f338ef40b4e8a3a3d1170aca /actionpack/test/controller | |
parent | cad9eb178ea5eec0e27d74e93518f4ed34e2f997 (diff) | |
parent | 2647d2f656ff203f45eecd7e19182018519d4064 (diff) | |
download | rails-186161148a189839a1e0924043f068a8d155ce69.tar.gz rails-186161148a189839a1e0924043f068a8d155ce69.tar.bz2 rails-186161148a189839a1e0924043f068a8d155ce69.zip |
Merge pull request #13235 from strzalek/variants-inline
Inline syntax for variants
Diffstat (limited to 'actionpack/test/controller')
-rw-r--r-- | actionpack/test/controller/mime/respond_to_test.rb | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/actionpack/test/controller/mime/respond_to_test.rb b/actionpack/test/controller/mime/respond_to_test.rb index c258bbec06..0bac86977a 100644 --- a/actionpack/test/controller/mime/respond_to_test.rb +++ b/actionpack/test/controller/mime/respond_to_test.rb @@ -175,6 +175,12 @@ class RespondToController < ActionController::Base end end + def variant_inline_syntax + respond_to do |format| + format.html.phone { render text: "phone" } + end + end + protected def set_layout case action_name @@ -554,10 +560,16 @@ class RespondToControllerTest < ActionController::TestCase assert_equal "tablet", @response.body end - def test_no_variant_in_variant_setup get :variant_plus_none_for_format assert_equal "text/html", @response.content_type assert_equal "none", @response.body end + + def test_variant_inline_syntax + @request.variant = :phone + get :variant_inline_syntax + assert_equal "text/html", @response.content_type + assert_equal "phone", @response.body + end end |