mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* test/ruby/test_enumerator.rb: fix to skip "with_memo" test.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17422 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
c3e619c83d
commit
1bc6479a88
2 changed files with 5 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
|||
Thu Jun 19 11:48:33 2008 Koichi Sasada <ko1@atdot.net>
|
||||
|
||||
* test/ruby/test_enumerator.rb: fix to skip "with_memo" test.
|
||||
|
||||
Thu Jun 19 11:40:55 2008 Koichi Sasada <ko1@atdot.net>
|
||||
|
||||
* vm_insnhelper.c (vm_throw): fix "return" process from "lambda".
|
||||
|
|
|
@ -93,6 +93,7 @@ class TestEnumerator < Test::Unit::TestCase
|
|||
|
||||
def test_with_memo
|
||||
r = 1..10
|
||||
return unless r.each.respond_to? :with_memo
|
||||
assert_equal([55, 3628800], (1..10).each.with_memo([0,1]) {|i, memo|
|
||||
memo[0] += i
|
||||
memo[1] *= i
|
||||
|
|
Loading…
Reference in a new issue