Chris Muench
Chris Muench

Reputation: 18338

Ruby On rails project without tests

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

Answers (1)

Sam 山
Sam 山

Reputation: 42863

ruby script/generate controller Account --no-test-framework

Check out the API.

Upvotes: 19

Related Questions