1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/spec/ruby/library/monitor/enter_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
551 B
Ruby
Raw Permalink Normal View History

2021-07-29 16:11:21 -04:00
require_relative '../../spec_helper'
require 'monitor'
describe "Monitor#enter" do
it "acquires the monitor" do
monitor = Monitor.new
10.times do
wait_q = Queue.new
continue_q = Queue.new
thread = Thread.new do
begin
monitor.enter
wait_q << true
continue_q.pop
ensure
monitor.exit
end
end
wait_q.pop
monitor.mon_locked?.should == true
continue_q << true
thread.join
monitor.mon_locked?.should == false
end
end
end