From 00979fdb2c00de4e124a7c939b9024f57b4a835e Mon Sep 17 00:00:00 2001 From: Akshay Vishnoi Date: Tue, 29 Jul 2014 18:13:52 +0530 Subject: Move array test files under array --- activesupport/test/core_ext/array/prepend_append_test.rb | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 activesupport/test/core_ext/array/prepend_append_test.rb (limited to 'activesupport/test/core_ext/array/prepend_append_test.rb') diff --git a/activesupport/test/core_ext/array/prepend_append_test.rb b/activesupport/test/core_ext/array/prepend_append_test.rb new file mode 100644 index 0000000000..762aa69b2b --- /dev/null +++ b/activesupport/test/core_ext/array/prepend_append_test.rb @@ -0,0 +1,12 @@ +require 'abstract_unit' +require 'active_support/core_ext/array' + +class PrependAppendTest < ActiveSupport::TestCase + def test_append + assert_equal [1, 2], [1].append(2) + end + + def test_prepend + assert_equal [2, 1], [1].prepend(2) + end +end -- cgit v1.2.3