aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/thread/list_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/thread/list_spec.rb')
-rw-r--r--spec/ruby/core/thread/list_spec.rb19
1 files changed, 16 insertions, 3 deletions
diff --git a/spec/ruby/core/thread/list_spec.rb b/spec/ruby/core/thread/list_spec.rb
index bd56cb4c52..80dd15c6ca 100644
--- a/spec/ruby/core/thread/list_spec.rb
+++ b/spec/ruby/core/thread/list_spec.rb
@@ -35,8 +35,21 @@ describe "Thread.list" do
t.join
end
end
-end
-describe "Thread.list" do
- it "needs to be reviewed for spec completeness"
+ it "returns instances of Thread and not null or nil values" do
+ spawner = Thread.new do
+ Array.new(100) do
+ Thread.new {}
+ end
+ end
+
+ while spawner.alive?
+ Thread.list.each { |th|
+ th.should be_kind_of(Thread)
+ }
+ end
+
+ threads = spawner.value
+ threads.each(&:join)
+ end
end