2009-10-03 22:51:34 -04:00
|
|
|
$:.unshift(File.dirname(__FILE__) + '/../../activesupport/lib')
|
|
|
|
|
2009-10-03 22:33:06 -04:00
|
|
|
require 'test/unit'
|
|
|
|
require 'rbconfig'
|
2009-10-03 22:51:34 -04:00
|
|
|
require 'active_support/core_ext/kernel/reporting'
|
2009-10-03 22:33:06 -04:00
|
|
|
|
|
|
|
class TestIsolated < Test::Unit::TestCase
|
|
|
|
ruby = File.join(*RbConfig::CONFIG.values_at('bindir', 'RUBY_INSTALL_NAME'))
|
|
|
|
|
|
|
|
Dir["#{File.dirname(__FILE__)}/{abstract,controller,dispatch,template}/**/*_test.rb"].each do |file|
|
|
|
|
define_method("test #{file}") do
|
|
|
|
command = "#{ruby} -Ilib:test #{file}"
|
2009-11-04 15:44:06 -05:00
|
|
|
result = silence_stderr { `#{command}` }
|
|
|
|
assert_block("#{command}\n#{result}") { $?.to_i.zero? }
|
2009-10-03 22:33:06 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|