summaryrefslogtreecommitdiff
path: root/bootstraptest/test_thread.rb
diff options
context:
space:
mode:
Diffstat (limited to 'bootstraptest/test_thread.rb')
-rw-r--r--bootstraptest/test_thread.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/bootstraptest/test_thread.rb b/bootstraptest/test_thread.rb
index 9711535d72..7810455c87 100644
--- a/bootstraptest/test_thread.rb
+++ b/bootstraptest/test_thread.rb
@@ -160,6 +160,13 @@ assert_equal %q{[1, 1]}, %q{
sleep 0.1
[thg.list.size, ThreadGroup::Default.list.size]
}
+assert_equal %q{true}, %q{
+ thg = ThreadGroup.new
+
+ t = Thread.new{sleep 5}
+ thg.add t
+ thg.list.include?(t)
+}
assert_equal %q{[true, nil, true]}, %q{
/a/ =~ 'a'
$a = $~