diff options
author | Yves Senn <yves.senn@gmail.com> | 2013-07-06 15:10:10 -0700 |
---|---|---|
committer | Yves Senn <yves.senn@gmail.com> | 2013-07-06 15:10:10 -0700 |
commit | ef8f49edf3d4613fafff11695da2355e6332b41e (patch) | |
tree | 6e294d3fc4c692c957e23f79b9d72167b566366b /actionpack | |
parent | 1ec090e3929f4717968c01b049afbf5b47c39f99 (diff) | |
parent | cbaf71b7dc3c9b195a041b80be7be455a7178638 (diff) | |
download | rails-ef8f49edf3d4613fafff11695da2355e6332b41e.tar.gz rails-ef8f49edf3d4613fafff11695da2355e6332b41e.tar.bz2 rails-ef8f49edf3d4613fafff11695da2355e6332b41e.zip |
Merge pull request #11339 from arunagw/running-actionpack-isolated
Running isolated test for assertions and journey
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/Rakefile | 2 |
1 files changed, 1 insertions, 1 deletions
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 |