instance method
run
Ruby on Rails 3.1.12
Since v3.0.20 Last seen in v3.2.22.5Signature
run(runner)
No documentation comment.
Parameters
-
runnerreq
Source
# File activesupport/lib/active_support/testing/isolation.rb, line 80
def run(runner)
_run_class_setup
serialized = run_in_isolation do |isolated_runner|
super(isolated_runner)
end
retval, proxy = Marshal.load(serialized)
proxy.__replay__(runner)
retval
end
Defined in activesupport/lib/active_support/testing/isolation.rb line 80
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveSupport::Testing::Isolation::MiniTest