aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/tasks/testing.rake
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2009-11-25 23:25:32 -0200
committerJosé Valim <jose.valim@gmail.com>2009-11-25 23:25:32 -0200
commitfc3629f6ca2b43693f5447a1fb43881f1814e117 (patch)
tree724226a073a5f454fc8c2d28ff8bc85bd031fa40 /railties/lib/rails/tasks/testing.rake
parent41e607dee20b15d8dc71dc16a08d4bbe9e36ac70 (diff)
parent02c3c9dfbcec05e3b0cecc062da8acd0cf7c53e0 (diff)
downloadrails-fc3629f6ca2b43693f5447a1fb43881f1814e117.tar.gz
rails-fc3629f6ca2b43693f5447a1fb43881f1814e117.tar.bz2
rails-fc3629f6ca2b43693f5447a1fb43881f1814e117.zip
Merge branch 'master' of git://github.com/rails/rails
Diffstat (limited to 'railties/lib/rails/tasks/testing.rake')
-rw-r--r--railties/lib/rails/tasks/testing.rake9
1 files changed, 0 insertions, 9 deletions
diff --git a/railties/lib/rails/tasks/testing.rake b/railties/lib/rails/tasks/testing.rake
index fd5e52a05b..5bd4aa1596 100644
--- a/railties/lib/rails/tasks/testing.rake
+++ b/railties/lib/rails/tasks/testing.rake
@@ -59,7 +59,6 @@ namespace :test do
recent_tests('app/controllers/**/*.rb', 'test/functional', since)
t.libs << 'test'
- t.verbose = true
t.test_files = touched.uniq
end
Rake::Task['test:recent'].comment = "Test recent changes"
@@ -84,35 +83,30 @@ namespace :test do
end
t.libs << 'test'
- t.verbose = true
end
Rake::Task['test:uncommitted'].comment = "Test changes since last checkin (only Subversion and Git)"
Rake::TestTask.new(:units => "db:test:prepare") do |t|
t.libs << "test"
t.pattern = 'test/unit/**/*_test.rb'
- t.verbose = true
end
Rake::Task['test:units'].comment = "Run the unit tests in test/unit"
Rake::TestTask.new(:functionals => "db:test:prepare") do |t|
t.libs << "test"
t.pattern = 'test/functional/**/*_test.rb'
- t.verbose = true
end
Rake::Task['test:functionals'].comment = "Run the functional tests in test/functional"
Rake::TestTask.new(:integration => "db:test:prepare") do |t|
t.libs << "test"
t.pattern = 'test/integration/**/*_test.rb'
- t.verbose = true
end
Rake::Task['test:integration'].comment = "Run the integration tests in test/integration"
Rake::TestTask.new(:benchmark => 'db:test:prepare') do |t|
t.libs << 'test'
t.pattern = 'test/performance/**/*_test.rb'
- t.verbose = true
t.options = '-- --benchmark'
end
Rake::Task['test:benchmark'].comment = 'Benchmark the performance tests'
@@ -120,7 +114,6 @@ namespace :test do
Rake::TestTask.new(:profile => 'db:test:prepare') do |t|
t.libs << 'test'
t.pattern = 'test/performance/**/*_test.rb'
- t.verbose = true
end
Rake::Task['test:profile'].comment = 'Profile the performance tests'
@@ -132,8 +125,6 @@ namespace :test do
else
t.pattern = 'vendor/plugins/*/**/test/**/*_test.rb'
end
-
- t.verbose = true
end
Rake::Task['test:plugins'].comment = "Run the plugin tests in vendor/plugins/*/**/test (or specify with PLUGIN=name)"
end