method
synchronize
v2_1_10 -
Show latest stable
- Class:
MiniTest::Unit
synchronize()public
No documentation available.
# File lib/minitest/unit.rb, line 1010
def synchronize # :nodoc:
if @mutex then
@mutex.synchronize { yield }
else
yield
end
end