* Add test case for empty array and first method with args.

Patch by @yui-knk [fix GH-955]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51141 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
hsbt 2015-07-04 10:43:38 +00:00
parent a894e920aa
commit aebf152ea4
3 changed files with 7 additions and 0 deletions

1
enum.c
View file

@ -828,6 +828,7 @@ static VALUE enum_take(VALUE obj, VALUE n);
* %w[foo bar baz].first(2) #=> ["foo", "bar"]
* %w[foo bar baz].first(10) #=> ["foo", "bar", "baz"]
* [].first #=> nil
* [].first(10) #=> []
*
*/