method

after_teardown

after_teardown()
public

No documentation available.

# File activesupport/lib/active_support/testing/tests_without_assertions.rb, line 9
      def after_teardown
        super

        if assertions.zero? && !skipped? && !error?
          file, line = method(name).source_location
          warn "Test is missing assertions: `#{name}` #{file}:#{line}"
        end
      end