From 3920d64479c8763e1f0a64db872e5f072268cda9 Mon Sep 17 00:00:00 2001 From: Kuldeep Aggarwal Date: Fri, 23 May 2014 20:47:21 +0530 Subject: add test cases for negative position in Array#from --- activesupport/test/core_ext/array_ext_test.rb | 2 ++ 1 file changed, 2 insertions(+) (limited to 'activesupport/test') diff --git a/activesupport/test/core_ext/array_ext_test.rb b/activesupport/test/core_ext/array_ext_test.rb index e0e54f47e4..4601a80d42 100644 --- a/activesupport/test/core_ext/array_ext_test.rb +++ b/activesupport/test/core_ext/array_ext_test.rb @@ -10,6 +10,8 @@ class ArrayExtAccessTests < ActiveSupport::TestCase assert_equal %w( a b c d ), %w( a b c d ).from(0) assert_equal %w( c d ), %w( a b c d ).from(2) assert_equal %w(), %w( a b c d ).from(10) + assert_equal %w( d e ), %w( a b c d e ).from(-2) + assert_equal %w(), %w( a b c d e ).from(-10) end def test_to -- cgit v1.2.3