やりたいこと
rails g model
やrails g controller
などをしたときに、自動でファイルが生成されるのをやめたい- RSpecのスペックファイルを作ってほしい
- minitest のテストファイル生成をやめたい
手順
config/application.rb
に設定をする。
RSpecのテストファイルを生成したい
※RSpecが使える環境になっていることが前提。
module RailsTestSample class Application < Rails::Application # Initialize configuration defaults for originally generated Rails version. config.load_defaults 6.0 # Settings in config/environments/* take precedence over those specified here. # Application configuration can go into files in config/initializers # -- all .rb files in that directory are automatically loaded after loading # the framework and any gems in your application. #追記 config.generators do |g| g.test_framework :rspec end end end
これで minitest の生成もされなくなる。