From b35fd40891a907543d67e6aac2c53dbc22bb0b43 Mon Sep 17 00:00:00 2001 From: Carlos Antonio da Silva Date: Wed, 7 Mar 2012 09:31:27 -0300 Subject: Add test case for #5307 --- actionpack/test/controller/mime_responds_test.rb | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/actionpack/test/controller/mime_responds_test.rb b/actionpack/test/controller/mime_responds_test.rb index f00ddb1799..981488fac1 100644 --- a/actionpack/test/controller/mime_responds_test.rb +++ b/actionpack/test/controller/mime_responds_test.rb @@ -132,7 +132,6 @@ class RespondToController < ActionController::Base end end - def iphone_with_html_response_type request.format = :iphone if request.env["HTTP_ACCEPT"] == "text/iphone" @@ -1104,7 +1103,7 @@ class PostController < AbstractPostController around_filter :with_iphone def index - respond_to(:html, :iphone) + respond_to(:html, :iphone, :js) end protected @@ -1151,6 +1150,11 @@ class MimeControllerLayoutsTest < ActionController::TestCase get :index assert_equal '
Super iPhone
', @response.body end + + def test_non_navigational_format_with_no_template_fallbacks_to_html_template_with_no_layout + get :index, :format => :js + assert_equal "Hello Firefox", @response.body + end end class FlashResponder < ActionController::Responder -- cgit v1.2.3