From 521318333eaa2654b9ad535c592281ae9efb9113 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Mon, 2 Mar 2015 08:46:20 -0800 Subject: Move Array#without from Grouping to Access concern and add dedicated test (relates to #19157) --- activesupport/test/core_ext/array/access_test.rb | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'activesupport/test') diff --git a/activesupport/test/core_ext/array/access_test.rb b/activesupport/test/core_ext/array/access_test.rb index f14f64421d..3f1e0c4cb4 100644 --- a/activesupport/test/core_ext/array/access_test.rb +++ b/activesupport/test/core_ext/array/access_test.rb @@ -27,4 +27,8 @@ class AccessTest < ActiveSupport::TestCase assert_equal array[4], array.fifth assert_equal array[41], array.forty_two end + + def test_without + assert_equal [1, 2, 4], [1, 2, 3, 4, 5].without(3, 5) + end end -- cgit v1.2.3