From 21f8e15f65fa05bd7dc13c22793a73d15a2d7529 Mon Sep 17 00:00:00 2001 From: Artur Beljajev Date: Mon, 30 Oct 2017 10:43:51 +0200 Subject: [PATCH] Disable unit test generation g.test_framework = :testunit (or test_unit) does not work out of the box. https://stackoverflow.com/questions/12148611/rails-generators-not- generating-the-proper-test-templates --- config/application.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/application.rb b/config/application.rb index 13d0c73ef..57106c8ea 100644 --- a/config/application.rb +++ b/config/application.rb @@ -60,7 +60,7 @@ module Registry g.helper false g.template_engine :erb g.jbuilder false - g.test_framework :minitest, fixture: false + g.test_framework nil end registrant_portal_uri = URI.parse(ENV['registrant_url'])