diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2010-04-24 19:17:30 -0300 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2010-04-24 15:43:12 -0700 |
commit | ed0ca5db9ea247ceae67f22a750cbd49006f35ed (patch) | |
tree | c5cdd0610b8c11a5591303185c0896c03199d2dd /actionpack/test | |
parent | 5c9d23f870bc59a42a2c5994f4e6b11d3e4e5bdc (diff) | |
download | rails-ed0ca5db9ea247ceae67f22a750cbd49006f35ed.tar.gz rails-ed0ca5db9ea247ceae67f22a750cbd49006f35ed.tar.bz2 rails-ed0ca5db9ea247ceae67f22a750cbd49006f35ed.zip |
Add a test for assert_recognizes on ActionDispatch::IntegrationTest [#4390 state:committed]
Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
Diffstat (limited to 'actionpack/test')
-rw-r--r-- | actionpack/test/abstract_unit.rb | 8 | ||||
-rw-r--r-- | actionpack/test/dispatch/routing_test.rb | 6 |
2 files changed, 13 insertions, 1 deletions
diff --git a/actionpack/test/abstract_unit.rb b/actionpack/test/abstract_unit.rb index acf887ee4a..f3ff258016 100644 --- a/actionpack/test/abstract_unit.rb +++ b/actionpack/test/abstract_unit.rb @@ -143,6 +143,12 @@ class BasicController end end +class ActionDispatch::IntegrationTest < ActiveSupport::TestCase + setup do + @routes = SharedTestRoutes + end +end + class ActionController::IntegrationTest < ActiveSupport::TestCase def self.build_app(routes = nil) RoutedRackApp.new(routes || ActionDispatch::Routing::RouteSet.new) do |middleware| @@ -275,4 +281,4 @@ module ActionController class Base include SharedTestRoutes.url_helpers end -end
\ No newline at end of file +end diff --git a/actionpack/test/dispatch/routing_test.rb b/actionpack/test/dispatch/routing_test.rb index 5bca476b27..f67e403330 100644 --- a/actionpack/test/dispatch/routing_test.rb +++ b/actionpack/test/dispatch/routing_test.rb @@ -1000,6 +1000,12 @@ class TestRoutingMapper < ActionDispatch::IntegrationTest end end + def test_assert_recognizes_account_overview + with_test_routes do + assert_recognizes({:controller => "account", :action => "overview"}, "/account/overview") + end + end + private def with_test_routes yield |