module MiniTestSpecRails::Init::MiniShouldaBehavior

def teardown_with_minitest(*args, &block)

def teardown_with_minitest(*args, &block)
  if args.first.is_a?(Symbol) && !block_given?
    teardown_without_minitest(args.first)
  else
    teardown_without_minitest { |o| o.instance_eval(&block) }
  end
end