aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/test_case_test.rb
blob: 08df67827e2ee3f237da071e3c2aa5c4a889f044 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
require 'abstract_unit'

module ActiveSupport
  class TestCaseTest < ActiveSupport::TestCase
    def test_pending_deprecation
      assert_deprecated do
        pending "should use #skip instead"
      end
    end
  end
end