module MiniTestSpecRails::DSL::ClassMethods

def describe(*args, &block)

def describe(*args, &block)
  stack = Minitest::Spec.describe_stack
  stack.push self if stack.empty?
  super(*args) { class_eval(&block) }
  stack.pop if stack.length == 1
end