aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/threadgroup/list_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/threadgroup/list_spec.rb')
-rw-r--r--spec/ruby/core/threadgroup/list_spec.rb11
1 files changed, 5 insertions, 6 deletions
diff --git a/spec/ruby/core/threadgroup/list_spec.rb b/spec/ruby/core/threadgroup/list_spec.rb
index 5f2281af8d..b2ac64324a 100644
--- a/spec/ruby/core/threadgroup/list_spec.rb
+++ b/spec/ruby/core/threadgroup/list_spec.rb
@@ -1,17 +1,16 @@
require_relative '../../spec_helper'
-require_relative 'fixtures/classes'
describe "ThreadGroup#list" do
it "returns the list of threads in the group" do
- chan = Channel.new
- th1 = Thread.new { chan << :go; sleep }
- chan.receive.should == :go
+ q = Queue.new
+ th1 = Thread.new { q << :go; sleep }
+ q.pop.should == :go
tg = ThreadGroup.new
tg.add(th1)
tg.list.should include(th1)
- th2 = Thread.new { chan << :go; sleep }
- chan.receive.should == :go
+ th2 = Thread.new { q << :go; sleep }
+ q.pop.should == :go
tg.add(th2)
(tg.list & [th1, th2]).should include(th1, th2)