1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
This commit is contained in:
Benoit Daloze 2020-05-03 12:28:29 +02:00
parent f646d20aae
commit 5aaa75e7c1
263 changed files with 921 additions and 921 deletions

View file

@ -58,13 +58,13 @@ describe "Thread.new" do
m2 = Mutex.new
t = Thread.new {
m1.lock
m1.locked?.should == true
m1.should.locked?
m2.lock
m2.locked?.should == true
m2.should.locked?
}
t.join
m1.locked?.should == false
m2.locked?.should == false
m1.should_not.locked?
m2.should_not.locked?
end
it "releases Mutexes held by the Thread when the Thread finishes, also with Mutex#synchronize" do
@ -75,9 +75,9 @@ describe "Thread.new" do
m.lock
}
m.lock
m.locked?.should == true
m.should.locked?
}
t.join
m.locked?.should == false
m.should_not.locked?
end
end