From 9645cb83f2320742f2e7c9a5a0d45fef7c8d43c4 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Tue, 22 Jan 2013 18:28:58 +0000 Subject: [PATCH] ActionController::IntegrationTest is ActionDispatch::IntegrationTest. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11255 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- extra/sample_plugin/test/integration/routing_test.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extra/sample_plugin/test/integration/routing_test.rb b/extra/sample_plugin/test/integration/routing_test.rb index 3ddfe5189..bfc2f2b78 100644 --- a/extra/sample_plugin/test/integration/routing_test.rb +++ b/extra/sample_plugin/test/integration/routing_test.rb @@ -1,7 +1,7 @@ require File.expand_path(File.dirname(__FILE__) + '../../../../../test/test_helper') -class SamplePluginRoutingTest < ActionController::IntegrationTest +class SamplePluginRoutingTest < ActionDispatch::IntegrationTest def test_example assert_routing( { :method => 'get', :path => "/projects/1234/hello" },