From cbaf71b7dc3c9b195a041b80be7be455a7178638 Mon Sep 17 00:00:00 2001 From: Arun Agrawal Date: Sat, 6 Jul 2013 23:05:03 +0200 Subject: [PATCH] Running isolated test for assertions and journey in actionpack --- actionpack/Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actionpack/Rakefile b/actionpack/Rakefile index 114d3a7c0c..97ab30ada0 100644 --- a/actionpack/Rakefile +++ b/actionpack/Rakefile @@ -19,7 +19,7 @@ end namespace :test do task :isolated do ruby = File.join(*RbConfig::CONFIG.values_at('bindir', 'RUBY_INSTALL_NAME')) - Dir.glob("test/{abstract,controller,dispatch}/**/*_test.rb").all? do |file| + Dir.glob("test/{abstract,controller,dispatch,assertions,journey}/**/*_test.rb").all? do |file| sh(ruby, '-w', '-Ilib:test', file) end or raise "Failures" end