mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* 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
This commit is contained in:
parent
6eac885ebe
commit
bf29986371
2 changed files with 9 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
Wed Dec 17 10:50:09 2014 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
|
||||
|
||||
* test/gdbm/test_gdbm.rb: Added test for each_key called without a block.
|
||||
Patch by @joeyates [fix GH-783]
|
||||
|
||||
Wed Dec 17 10:18:42 2014 Koichi Sasada <ko1@atdot.net>
|
||||
|
||||
* compile.c (iseq_compile_each): check
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in a new issue