class Rails::Command::TestCommand

def help(command_name = nil, *)

def help(command_name = nil, *)
  super
  if command_name == "test"
    say ""
    say self.class.class_usage
  end
  say ""
  Minitest.run(%w(--help))
end