summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-03-14 01:35:09 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-03-14 01:35:09 +0000
commit8cdfe403d3d79f997fdfdb9af3096110e5d84150 (patch)
treeae6818c23ad9d6239871355c43139e7949f95d59 /test
parent48f9f0bda9c09f946b912e954f755591966ee703 (diff)
Init_Enumerator
* enumerator.c (Init_Enumerator): initialize method IDs first. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35006 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_lazy_enumerator.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_lazy_enumerator.rb b/test/ruby/test_lazy_enumerator.rb
index 9dbabafaa9..caf222c235 100644
--- a/test/ruby/test_lazy_enumerator.rb
+++ b/test/ruby/test_lazy_enumerator.rb
@@ -127,7 +127,7 @@ class TestLazyEnumerator < Test::Unit::TestCase
assert_equal([1, "a"], a.lazy.zip("a".."c").first)
assert_equal(1, a.current)
end
-
+
def test_zip_without_arg
a = Step.new(1..3)
assert_equal([1], a.zip.first)