1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* test/ruby/test_array.rb (test_array_subclass) test for r20076.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@20077 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
yugui 2008-10-31 09:57:45 +00:00
parent b4729e2db3
commit 7ac0beaeea
2 changed files with 7 additions and 1 deletions

View file

@ -1,6 +1,10 @@
Fri Oct 31 18:51:42 2008 Yuki Sonoda (Yugui) <yugui@yugui.jp>
* test/ruby/test_array.rb (test_array_subclass): test for r20076.
Fri Oct 31 18:42:19 2008 Yuki Sonoda (Yugui) <yugui@yugui.jp>
* array.c (ary_partial0): recovers mistakenly feature change at r19723.
* array.c (ary_partial0): recovers the mistakenly changed feature at r19723.
Array#[m,n] had returned an Array even for an instance of a
subclass.

View file

@ -1622,6 +1622,8 @@ class TestArray < Test::Unit::TestCase
def test_array_subclass
assert_equal(Array2, Array2[1,2,3].uniq.class, "[ruby-dev:34581]")
assert_equal(Array2, Array2[1,2][0,1].class) # embeded
assert_equal(Array2, Array2[*(1..100)][1..99].class) #not embeded
end
def test_inspect