From 55a9c86e6228b4286df7fb59c326832b57aa0f54 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Tue, 25 Sep 2007 14:57:15 +0000 Subject: Added failing tests for iphone git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7629 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/test/controller/mime_responds_test.rb | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'actionpack/test/controller') diff --git a/actionpack/test/controller/mime_responds_test.rb b/actionpack/test/controller/mime_responds_test.rb index 526b7792be..959cb7c2f4 100644 --- a/actionpack/test/controller/mime_responds_test.rb +++ b/actionpack/test/controller/mime_responds_test.rb @@ -116,7 +116,8 @@ class RespondToController < ActionController::Base def iphone_with_html_response_type Mime::Type.register_alias("text/html", :iphone) - + request.format = "iphone" if request.env["HTTP_ACCEPT"] == "text/iphone" + respond_to do |type| type.html { @type = "Firefox" } type.iphone { @type = "iPhone" } @@ -399,7 +400,7 @@ class MimeControllerTest < Test::Unit::TestCase get :iphone_with_html_response_type, :format => "iphone" assert_equal "text/html", @response.content_type - assert_equal "Hello future from iPhone!", @response.body + assert_equal "Hello iPhone future from iPhone!", @response.body end def test_format_with_custom_response_type_and_request_headers -- cgit v1.2.3