aboutsummaryrefslogblamecommitdiffstats
path: root/activesupport/test/testing/after_teardown_test.rb
blob: 961af494793cb626d2c299b8f2c17bd39886e9f4 (plain) (tree)
1
2
3
4
5
6
7
8





                             

         



                   
                                                 
                            









                                                                                     
                                                           



                               
                  





                                                                  
# frozen_string_literal: true

require "abstract_unit"

module OtherAfterTeardown
  def after_teardown
    super

    @witness = true
  end
end

class AfterTeardownTest < ActiveSupport::TestCase
  include OtherAfterTeardown

  attr_writer :witness

  MyError = Class.new(StandardError)

  teardown do
    raise MyError, "Test raises an error, all after_teardown should still get called"
  end

  def after_teardown
    assert_changes -> { failures.count }, from: 0, to: 1 do
      super
    end

    assert_equal true, @witness
    failures.clear
  end

  def test_teardown_raise_but_all_after_teardown_method_are_called
    assert true
  end
end