diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2009-10-07 16:59:51 -0700 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2009-10-09 18:31:30 -0700 |
commit | c23d28e2b39eea266bc783c5e6b656b84866ee84 (patch) | |
tree | f71d75fb93462a6899dc59d840fbbe932fb181c6 | |
parent | 68d416a58fb5a47df2365c4f3a6da9f8db5c7cb7 (diff) | |
download | rails-c23d28e2b39eea266bc783c5e6b656b84866ee84.tar.gz rails-c23d28e2b39eea266bc783c5e6b656b84866ee84.tar.bz2 rails-c23d28e2b39eea266bc783c5e6b656b84866ee84.zip |
To unmarshal MissingSourceFile from child
-rw-r--r-- | activesupport/lib/active_support/testing/isolation.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/testing/isolation.rb b/activesupport/lib/active_support/testing/isolation.rb index cdd6d5f49b..bec303f6ab 100644 --- a/activesupport/lib/active_support/testing/isolation.rb +++ b/activesupport/lib/active_support/testing/isolation.rb @@ -1,3 +1,5 @@ +require 'active_support/core_ext/load_error' + module ActiveSupport module Testing class ProxyTestResult @@ -107,4 +109,4 @@ if ENV['ISOLATION_TEST'] super && test.method_name == ENV['ISOLATION_TEST'] end end -end
\ No newline at end of file +end |