2018-03-04 10:09:32 -05:00
|
|
|
require_relative '../../spec_helper'
|
2017-05-07 08:04:49 -04:00
|
|
|
require 'thread'
|
|
|
|
|
|
|
|
describe "Thread.exclusive" do
|
|
|
|
before :each do
|
|
|
|
ScratchPad.clear
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns the result of yielding" do
|
|
|
|
Thread.exclusive { :result }.should == :result
|
|
|
|
end
|
|
|
|
end
|