aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/ts_isolated.rb
blob: fc1bbd6e3d04d77bd9875161422d979a36a9ef26 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'test/unit'
require 'rbconfig'
require 'lib/active_support/core_ext/kernel/reporting'

class TestIsolated < Test::Unit::TestCase
  ruby = File.join(*RbConfig::CONFIG.values_at('bindir', 'RUBY_INSTALL_NAME'))

  Dir["#{File.dirname(__FILE__)}/**/*_test.rb"].each do |file|
    define_method("test #{file}") do
      command = "#{ruby} -Ilib:test #{file}"
      result = silence_stderr { `#{command}` }
      assert_block("#{command}\n#{result}") { $?.to_i.zero? }
    end
  end
end