mirror of https://github.com/rails/rails
Merge pull request #15276 from kuldeepaggarwal/fix-array-to
Array#to now accept negative position also.
This commit is contained in:
commit
a312770118
|
@ -17,8 +17,10 @@ class Array
|
|||
# %w( a b c d ).to(2) # => ["a", "b", "c"]
|
||||
# %w( a b c d ).to(10) # => ["a", "b", "c", "d"]
|
||||
# %w().to(0) # => []
|
||||
# %w( a b c d ).to(-2) # => ["a", "b", "c"]
|
||||
# %w( a b c ).to(-10) # => []
|
||||
def to(position)
|
||||
first position + 1
|
||||
self[0..position]
|
||||
end
|
||||
|
||||
# Equal to <tt>self[1]</tt>.
|
||||
|
|
|
@ -18,6 +18,8 @@ class ArrayExtAccessTests < ActiveSupport::TestCase
|
|||
assert_equal %w( a ), %w( a b c d ).to(0)
|
||||
assert_equal %w( a b c ), %w( a b c d ).to(2)
|
||||
assert_equal %w( a b c d ), %w( a b c d ).to(10)
|
||||
assert_equal %w( a b c ), %w( a b c d ).to(-2)
|
||||
assert_equal %w(), %w( a b c ).to(-10)
|
||||
end
|
||||
|
||||
def test_second_through_tenth
|
||||
|
|
Loading…
Reference in New Issue