Commit b32e5860 authored by Yukihiro Matsumoto's avatar Yukihiro Matsumoto

should enhance test for Array#slice

parent 46b098e0
......@@ -222,7 +222,9 @@ assert('Array#size', '15.2.12.5.28') do
end
assert('Array#slice', '15.2.12.5.29') do
[1,2,3].[](1) == 2
a = "12345".slice(1, 3)
b = a.slice(0)
"#{b}:" == "2:" and [1,2,3].[](1) == 2
end
assert('Array#unshift', '15.2.12.5.30') do
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment