aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@envy8.local>2008-04-11 12:34:44 -0500
committerDavid Heinemeier Hansson <david@envy8.local>2008-04-11 12:34:44 -0500
commite89093aeb4b1f544cb54caf54a0374075250cc59 (patch)
treecc4f9533e473c8453ce14e0a0340ef5e9dac0bd4 /actionpack/test/controller
parentf46fd6f2fceb22f00669f066fc98f92a18e5875f (diff)
downloadrails-e89093aeb4b1f544cb54caf54a0374075250cc59.tar.gz
rails-e89093aeb4b1f544cb54caf54a0374075250cc59.tar.bz2
rails-e89093aeb4b1f544cb54caf54a0374075250cc59.zip
Fixed that formatted_polymorphic_route should be able to take the :format as part of a single hash or as the option hash (references #8741)
Diffstat (limited to 'actionpack/test/controller')
-rw-r--r--actionpack/test/controller/polymorphic_routes_test.rb11
1 files changed, 8 insertions, 3 deletions
diff --git a/actionpack/test/controller/polymorphic_routes_test.rb b/actionpack/test/controller/polymorphic_routes_test.rb
index 0d349a360c..4ec0d3cd4e 100644
--- a/actionpack/test/controller/polymorphic_routes_test.rb
+++ b/actionpack/test/controller/polymorphic_routes_test.rb
@@ -65,13 +65,18 @@ uses_mocha 'polymorphic URL helpers' do
formatted_polymorphic_url([@article, :pdf])
end
- # TODO: should this work?
- def xtest_format_option
+ def test_format_option
@article.save
- expects(:article_url).with(@article, :format => :pdf)
+ expects(:article_url).with(@article, :pdf)
polymorphic_url(@article, :format => :pdf)
end
+ def test_id_and_format_option
+ @article.save
+ expects(:article_url).with(:id => @article, :format => :pdf)
+ polymorphic_url(:id => @article, :format => :pdf)
+ end
+
def test_with_nested
@response.save
expects(:article_response_url).with(@article, @response)