diff options
Diffstat (limited to 'actionpack/test/ts_isolated.rb')
-rw-r--r-- | actionpack/test/ts_isolated.rb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/actionpack/test/ts_isolated.rb b/actionpack/test/ts_isolated.rb new file mode 100644 index 0000000000..4a321c631f --- /dev/null +++ b/actionpack/test/ts_isolated.rb @@ -0,0 +1,16 @@ +require 'test/unit' +require 'rbconfig' +require 'rubygems' +require 'active_support' + +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}" + silence_stderr { `#{command}` } + assert_equal 0, $?.to_i, command + end + end +end |