diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2014-05-09 12:05:24 -0700 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2014-05-09 12:05:24 -0700 |
commit | 314cbea9a30679f3ebfcca0cd17756ca8cad81ea (patch) | |
tree | d24307118f470dcd736e63a45670c7e3dc5bbf3d /actionpack/test | |
parent | 0a7beb1b77711e6b85234f425dfbc5f8c65420e9 (diff) | |
download | rails-314cbea9a30679f3ebfcca0cd17756ca8cad81ea.tar.gz rails-314cbea9a30679f3ebfcca0cd17756ca8cad81ea.tar.bz2 rails-314cbea9a30679f3ebfcca0cd17756ca8cad81ea.zip |
just call the method and assert the return value
do not test internals
Diffstat (limited to 'actionpack/test')
-rw-r--r-- | actionpack/test/controller/routing_test.rb | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/actionpack/test/controller/routing_test.rb b/actionpack/test/controller/routing_test.rb index df453a0251..b22bc2dc25 100644 --- a/actionpack/test/controller/routing_test.rb +++ b/actionpack/test/controller/routing_test.rb @@ -419,14 +419,7 @@ class LegacyRouteSetTests < ActiveSupport::TestCase get 'page' => 'content#show_page', :as => 'pages', :host => 'foo.com' end routes = setup_for_named_route - routes.expects(:url_for).with({ - :host => 'foo.com', - :only_path => false, - :controller => 'content', - :action => 'show_page', - :use_route => 'pages' - }).once - routes.send(:pages_url) + assert_equal "http://foo.com/page", routes.pages_url end def setup_for_named_route(options = {}) |