aboutsummaryrefslogtreecommitdiffstats
path: root/test/gdbm
diff options
context:
space:
mode:
authorhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-12-17 01:50:14 +0000
committerhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-12-17 01:50:14 +0000
commitbf29986371b81c08bbb83ded9587013b9a174b91 (patch)
treea088f83ae0a846d98c6a76b766538913162d1c46 /test/gdbm
parent6eac885ebef2b5189bb68acadcba0530bcc4bfb1 (diff)
downloadruby-bf29986371b81c08bbb83ded9587013b9a174b91.tar.gz
* test/gdbm/test_gdbm.rb: Added test for each_key called without a block.
Patch by @joeyates [fix GH-783] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48871 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/gdbm')
-rw-r--r--test/gdbm/test_gdbm.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/gdbm/test_gdbm.rb b/test/gdbm/test_gdbm.rb
index 07a1bb3386..d57e9526c3 100644
--- a/test/gdbm/test_gdbm.rb
+++ b/test/gdbm/test_gdbm.rb
@@ -390,6 +390,10 @@ if defined? GDBM
assert_equal(@gdbm, ret)
end
+ def test_each_key_without_block
+ assert_kind_of Enumerator, @gdbm.each_key
+ end
+
def test_keys
assert_equal([], @gdbm.keys)