aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/core_ext/array/prepend_append_test.rb
blob: 8573dbd5a6c477196185c828d7cc373c128c6b1d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

require "abstract_unit"

class PrependAppendTest < ActiveSupport::TestCase
  def test_requiring_prepend_and_append_is_deprecated
    assert_deprecated do
      require "active_support/core_ext/array/prepend_and_append"
    end
  end
end