Module: ActiveSupport::Testing::Isolation
- Defined in:
- lib/active_support/testing/isolation.rb
Defined Under Namespace
Modules: Forking, MiniTest, Subprocess, TestUnit
Class Method Summary collapse
Instance Method Summary collapse
-
#_run_class_setup ⇒ Object
class setup method should only happen in parent.
Class Method Details
.forking_env? ⇒ Boolean
36 37 38 |
# File 'lib/active_support/testing/isolation.rb', line 36 def self.forking_env? !ENV["NO_FORK"] && ((RbConfig::CONFIG['host_os'] !~ /mswin|mingw/) && (RUBY_PLATFORM !~ /java/)) end |
Instance Method Details
#_run_class_setup ⇒ Object
class setup method should only happen in parent
48 49 50 51 52 53 |
# File 'lib/active_support/testing/isolation.rb', line 48 def _run_class_setup # class setup method should only happen in parent unless defined?(@@ran_class_setup) || ENV['ISOLATION_TEST'] self.class.setup if self.class.respond_to?(:setup) @@ran_class_setup = true end end |