aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/core_ext/array/prepend_append_test.rb
blob: 762aa69b2b53ec48093c1a68c3ebc75be092fb00 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
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