blob: 961af494793cb626d2c299b8f2c17bd39886e9f4 (
plain) (
tree)
|
|
# 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
|