diff options
author | Gonçalo Silva <goncalossilva@gmail.com> | 2010-05-28 02:37:54 +0100 |
---|---|---|
committer | wycats <wycats@gmail.com> | 2010-05-28 23:53:03 +0200 |
commit | d21aa6de4f6d5a6a7249a43b7ba803ee45e42584 (patch) | |
tree | c9892c219d5a572fd8c73231cccd7fd536598dcd /railties/lib/rails/generators/test_unit/integration | |
parent | f1ae0321fa779b25eb4a46526f6094812af0e26c (diff) | |
download | rails-d21aa6de4f6d5a6a7249a43b7ba803ee45e42584.tar.gz rails-d21aa6de4f6d5a6a7249a43b7ba803ee45e42584.tar.bz2 rails-d21aa6de4f6d5a6a7249a43b7ba803ee45e42584.zip |
performance and integration tests inherit from AD, not AC
Signed-off-by: wycats <wycats@gmail.com>
Diffstat (limited to 'railties/lib/rails/generators/test_unit/integration')
-rw-r--r-- | railties/lib/rails/generators/test_unit/integration/templates/integration_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/lib/rails/generators/test_unit/integration/templates/integration_test.rb b/railties/lib/rails/generators/test_unit/integration/templates/integration_test.rb index 2c57158b1c..de0823749c 100644 --- a/railties/lib/rails/generators/test_unit/integration/templates/integration_test.rb +++ b/railties/lib/rails/generators/test_unit/integration/templates/integration_test.rb @@ -1,6 +1,6 @@ require 'test_helper' -class <%= class_name %>Test < ActionController::IntegrationTest +class <%= class_name %>Test < ActionDispatch::IntegrationTest fixtures :all # Replace this with your real tests. |