aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/Rakefile
diff options
context:
space:
mode:
authorArun Agrawal <arunagw@gmail.com>2013-05-28 19:59:55 +0200
committerArun Agrawal <arunagw@gmail.com>2013-05-28 19:59:55 +0200
commit5eaa30e47c91716006b755b7c211d82bf81f7fc1 (patch)
tree0fcd9b15c3167734e9bcc8bc89bb729e56f55301 /activesupport/Rakefile
parente10262962b0be6525f93824a2dcb51f1f88d2c05 (diff)
downloadrails-5eaa30e47c91716006b755b7c211d82bf81f7fc1.tar.gz
rails-5eaa30e47c91716006b755b7c211d82bf81f7fc1.tar.bz2
rails-5eaa30e47c91716006b755b7c211d82bf81f7fc1.zip
Running isolated tests
These stopped running don't know when. But these should be running now.
Diffstat (limited to 'activesupport/Rakefile')
-rw-r--r--activesupport/Rakefile9
1 files changed, 6 insertions, 3 deletions
diff --git a/activesupport/Rakefile b/activesupport/Rakefile
index e3788ed54f..f50225a9f0 100644
--- a/activesupport/Rakefile
+++ b/activesupport/Rakefile
@@ -9,13 +9,16 @@ Rake::TestTask.new do |t|
t.verbose = true
end
+
namespace :test do
- Rake::TestTask.new(:isolated) do |t|
- t.pattern = 'test/ts_isolated.rb'
+ task :isolated do
+ ruby = File.join(*RbConfig::CONFIG.values_at('bindir', 'RUBY_INSTALL_NAME'))
+ Dir.glob("test/**/*_test.rb").all? do |file|
+ sh(ruby, '-Ilib:test', file)
+ end or raise "Failures"
end
end
-
spec = eval(File.read('activesupport.gemspec'))
Gem::PackageTask.new(spec) do |p|