aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/test_case.rb
diff options
context:
space:
mode:
authorYehuda Katz + Carl Lerche <ykatz+clerche@engineyard.com>2009-06-30 12:00:50 -0700
committerYehuda Katz + Carl Lerche <ykatz+clerche@engineyard.com>2009-06-30 12:00:50 -0700
commit575b95ea0bf3d3fff6f47dddad23c754fb294604 (patch)
tree142ef4a20814e41281b385b1684bf5d5f14de035 /activesupport/lib/active_support/test_case.rb
parent9101941c1259627df99c5c13b8e893d5d593265c (diff)
downloadrails-575b95ea0bf3d3fff6f47dddad23c754fb294604.tar.gz
rails-575b95ea0bf3d3fff6f47dddad23c754fb294604.tar.bz2
rails-575b95ea0bf3d3fff6f47dddad23c754fb294604.zip
Created AS::Testing::Isolation which runs each test case in a separate process.
This allows for testing rails bootup (files are required, correct constants are set, etc...). Currently, this is implemented via forking only, but we will add support for jruby and windows shortly.
Diffstat (limited to 'activesupport/lib/active_support/test_case.rb')
-rw-r--r--activesupport/lib/active_support/test_case.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/test_case.rb b/activesupport/lib/active_support/test_case.rb
index bab2a401eb..e99a4854ce 100644
--- a/activesupport/lib/active_support/test_case.rb
+++ b/activesupport/lib/active_support/test_case.rb
@@ -13,6 +13,7 @@ require 'active_support/testing/assertions'
require 'active_support/testing/deprecation'
require 'active_support/testing/declarative'
require 'active_support/testing/pending'
+require 'active_support/testing/isolation'
module ActiveSupport
class TestCase < ::Test::Unit::TestCase