module RSpec::Rails::SetupAndTeardownAdapter::ClassMethods

def teardown(*methods, &block)

Other tags:
    Api: - private
def teardown(*methods, &block)
  methods.each { |method| after { __send__ method } }
  after(&block) if block
end