method
non_options
v2_1_10 -
Show latest stable
- Class:
Test::Unit::GCStressOption
non_options(files, options)public
No documentation available.
# File lib/test/unit.rb, line 223
def non_options(files, options)
if options.delete(:gc_stress)
MiniTest::Unit::TestCase.class_eval do
oldrun = instance_method(:run)
define_method(:run) do |runner|
begin
gc_stress, GC.stress = GC.stress, true
oldrun.bind(self).call(runner)
ensure
GC.stress = gc_stress
end
end
end
end
super
end