aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPratik Naik <pratiknaik@gmail.com>2009-05-17 14:31:54 +0200
committerPratik Naik <pratiknaik@gmail.com>2009-05-17 14:31:54 +0200
commita9e8c4b37480564d27883dffe9134a9f95796a15 (patch)
tree46fe2ce9c83197f005f86c1677dccd05adb5ea8b
parent842dab0c29bb05b98856aeb333bb0c2d14601a50 (diff)
downloadrails-a9e8c4b37480564d27883dffe9134a9f95796a15.tar.gz
rails-a9e8c4b37480564d27883dffe9134a9f95796a15.tar.bz2
rails-a9e8c4b37480564d27883dffe9134a9f95796a15.zip
Ensure rake test does not run new base tests as that requires rack/test
-rw-r--r--actionpack/Rakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/Rakefile b/actionpack/Rakefile
index 6ce8179646..41b190130e 100644
--- a/actionpack/Rakefile
+++ b/actionpack/Rakefile
@@ -22,7 +22,7 @@ task :default => [ :test ]
# Run the unit tests
desc "Run all unit tests"
-task :test => [:test_action_pack, :test_active_record_integration, :test_new_base]
+task :test => [:test_action_pack, :test_active_record_integration]
Rake::TestTask.new(:test_action_pack) do |t|
t.libs << "test"