summaryrefslogtreecommitdiffstats
path: root/test/ruby/test_array.rb
diff options
context:
space:
mode:
authormame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-10-29 16:16:53 +0000
committermame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-10-29 16:16:53 +0000
commitb8aa4fa2f2d0963f30a229f7df3c60a34351978c (patch)
tree42f74afca892ce398b3ad2f0dffb6cb43d06fbfb /test/ruby/test_array.rb
parent8cb3428cbc3b736cd4ae63a82fc4e2dd39c6f8c8 (diff)
downloadruby-b8aa4fa2f2d0963f30a229f7df3c60a34351978c.tar.gz
ruby-b8aa4fa2f2d0963f30a229f7df3c60a34351978c.tar.xz
ruby-b8aa4fa2f2d0963f30a229f7df3c60a34351978c.zip
* test/ruby/test_array (test_permutation): add a test that replaces
array during permutation. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20035 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_array.rb')
-rw-r--r--test/ruby/test_array.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/ruby/test_array.rb b/test/ruby/test_array.rb
index b8df56110..fcc493951 100644
--- a/test/ruby/test_array.rb
+++ b/test/ruby/test_array.rb
@@ -1297,6 +1297,11 @@ class TestArray < Test::Unit::TestCase
"edcba".each_char.to_a.permutation(5).sort)
assert_equal(@cls[].permutation(0).to_a, @cls[[]])
+ a = @cls[1, 2, 3, 4]
+ b = @cls[]
+ a.permutation {|x| b << x; a.replace(@cls[9, 8, 7, 6]) }
+ assert_equal(@cls[9, 8, 7, 6], a)
+ assert_equal(@cls[1, 2, 3, 4].permutation.to_a, b)
end
def test_take