module ActiveSupport::Testing::SetupAndTeardown::ClassMethods

def setup(*args, &block)

def setup(*args, &block)
  set_callback(:setup, :before, *args, &block)
end

def teardown(*args, &block)

def teardown(*args, &block)
  set_callback(:teardown, :after, *args, &block)
end