Reputation: 18338
I know it is not recommended but is there a way to generate/modify an existing project so it doesn't create test files when using generators such as rails generate controller NAME?
Upvotes: 10
Views: 4129
Reputation: 42863
ruby script/generate controller Account --no-test-framework
Check out the API.
Upvotes: 19