Railsy 4 usuwają generatory testów (szczególnie test_unit)

Jak mogę usunąć generatory test_unit, aby zniknęły zrails generate lista?

Próbowałem już tego na kilka sposobównie działało dla mnie:

config.generators do |g|
  g.test_framework nil
end

utwórz aplikację za pomocą-T opcja.

Mójrails g wydajność:

[a lot of other generators skipped]

    TestUnit:
      test_unit:controller
      test_unit:helper
      test_unit:integration
      test_unit:mailer
      test_unit:model
      test_unit:plugin
      test_unit:scaffold

questionAnswers(1)

yourAnswerToTheQuestion