diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2013-01-22 18:28:58 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2013-01-22 18:28:58 +0000 |
commit | 9645cb83f2320742f2e7c9a5a0d45fef7c8d43c4 (patch) | |
tree | 97b4e42e170dc5f8e4afc699794bd8830a0808c9 /extra | |
parent | 5397216190a8866703014518d07c440598dfb96b (diff) | |
download | redmine-9645cb83f2320742f2e7c9a5a0d45fef7c8d43c4.tar.gz redmine-9645cb83f2320742f2e7c9a5a0d45fef7c8d43c4.zip |
ActionController::IntegrationTest is ActionDispatch::IntegrationTest.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11255 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'extra')
-rw-r--r-- | extra/sample_plugin/test/integration/routing_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
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" }, |