aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/Rakefile
diff options
context:
space:
mode:
authorJoshua Peek <josh@joshpeek.com>2009-09-19 13:22:58 -0500
committerJoshua Peek <josh@joshpeek.com>2009-09-19 13:22:58 -0500
commitd5cfc72f55b89615c60a5afc64f5fb8d63524c46 (patch)
tree5d1de3328e37c268ffc88415a8823c60c8f03f82 /actionpack/Rakefile
parentf5ace625fe524938be35ad7d16bc9c29fd08fb96 (diff)
downloadrails-d5cfc72f55b89615c60a5afc64f5fb8d63524c46.tar.gz
rails-d5cfc72f55b89615c60a5afc64f5fb8d63524c46.tar.bz2
rails-d5cfc72f55b89615c60a5afc64f5fb8d63524c46.zip
Merge "test_new_base" runner into standard "test_action_pack"
Diffstat (limited to 'actionpack/Rakefile')
-rw-r--r--actionpack/Rakefile11
1 files changed, 2 insertions, 9 deletions
diff --git a/actionpack/Rakefile b/actionpack/Rakefile
index aaf1c7f926..113118bfc9 100644
--- a/actionpack/Rakefile
+++ b/actionpack/Rakefile
@@ -32,14 +32,14 @@ end
# 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'
# make sure we include the tests in alphabetical order as on some systems
# this will not happen automatically and the tests (as a whole) will error
- t.test_files = Dir.glob( "test/{controller,dispatch,template,html-scanner}/**/*_test.rb" ).sort
+ t.test_files = Dir.glob( "test/{abstract,controller,dispatch,new_base,template,html-scanner}/**/*_test.rb" ).sort
t.verbose = true
#t.warning = true
@@ -59,13 +59,6 @@ Rake::TestTask.new(:test_active_record_integration) do |t|
t.verbose = true
end
-desc 'New Controller Tests'
-Rake::TestTask.new(:test_new_base) do |t|
- t.libs << 'test'
- t.test_files = Dir.glob("test/{abstract,new_base}/*_test.rb")
- t.verbose = true
-end
-
# Genereate the RDoc documentation
Rake::RDocTask.new { |rdoc|