diff options
author | Joshua Peek <josh@joshpeek.com> | 2009-09-19 13:26:54 -0500 |
---|---|---|
committer | Joshua Peek <josh@joshpeek.com> | 2009-09-19 13:26:54 -0500 |
commit | 762d7616738a5f922d864d60dee89c44320d8786 (patch) | |
tree | 828dfb00620e11bd2533594c57ba35134a6aaecc /actionpack/Rakefile | |
parent | d5cfc72f55b89615c60a5afc64f5fb8d63524c46 (diff) | |
download | rails-762d7616738a5f922d864d60dee89c44320d8786.tar.gz rails-762d7616738a5f922d864d60dee89c44320d8786.tar.bz2 rails-762d7616738a5f922d864d60dee89c44320d8786.zip |
All tests should be ran under isolated_test too
Diffstat (limited to 'actionpack/Rakefile')
-rw-r--r-- | actionpack/Rakefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/actionpack/Rakefile b/actionpack/Rakefile index 113118bfc9..cc7b4b0043 100644 --- a/actionpack/Rakefile +++ b/actionpack/Rakefile @@ -34,22 +34,22 @@ end desc "Run all unit tests" task :test => [:test_action_pack, :test_active_record_integration] +TESTS_GLOB = "test/{abstract,controller,dispatch,new_base,template,html-scanner}/**/*_test.rb" + Rake::TestTask.new(:test_action_pack) do |t| t.libs << 'test' # make sure we include the tests in alphabetical order as on some systems # this will not happen automatically and the tests (as a whole) will error - t.test_files = Dir.glob( "test/{abstract,controller,dispatch,new_base,template,html-scanner}/**/*_test.rb" ).sort + t.test_files = Dir.glob(TESTS_GLOB).sort t.verbose = true - #t.warning = true + # t.warning = true end task :isolated_test do ruby = File.join(*RbConfig::CONFIG.values_at('bindir', 'RUBY_INSTALL_NAME')) - Dir.glob("test/{controller,dispatch,template}/**/*_test.rb").all? do |file| - system(ruby, "-Itest", file) - end or raise "Failures" + Dir.glob(TESTS_GLOB).all? { |file| system(ruby, '-Ilib:test', file) } or raise "Failures" end desc 'ActiveRecord Integration Tests' |