From 5eaa30e47c91716006b755b7c211d82bf81f7fc1 Mon Sep 17 00:00:00 2001 From: Arun Agrawal Date: Tue, 28 May 2013 19:59:55 +0200 Subject: Running isolated tests These stopped running don't know when. But these should be running now. --- actionpack/Rakefile | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'actionpack/Rakefile') diff --git a/actionpack/Rakefile b/actionpack/Rakefile index ba7956c3ab..875dfc69f2 100644 --- a/actionpack/Rakefile +++ b/actionpack/Rakefile @@ -22,11 +22,15 @@ Rake::TestTask.new(:test_action_pack) do |t| end namespace :test do - Rake::TestTask.new(:isolated) do |t| - t.libs << 'test' - t.pattern = 'test/ts_isolated.rb' + task :isolated do + ruby = File.join(*RbConfig::CONFIG.values_at('bindir', 'RUBY_INSTALL_NAME')) + Dir.glob("test/{abstract,controller,dispatch,template}/**/*_test.rb").all? do |file| + sh(ruby, '-Ilib:test', file) + end or raise "Failures" end +end +namespace :test do Rake::TestTask.new(:template) do |t| t.libs << 'test' t.pattern = 'test/template/**/*.rb' -- cgit v1.2.3