Methods
R
Instance Public methods
run(runner)
    # File activesupport/lib/active_support/testing/isolation.rb, line 80
80:         def run(runner)
81:           _run_class_setup
82: 
83:           serialized = run_in_isolation do |isolated_runner|
84:             super(isolated_runner)
85:           end
86: 
87:           retval, proxy = Marshal.load(serialized)
88:           proxy.__replay__(runner)
89:           retval
90:         end