Just do IT

思うは招く

Rails で minitest テストファイルの生成をやめてスペックファイルを自動生成する

やりたいこと

  • rails g modelrails 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 の生成もされなくなる。

rails generateで自動生成されるファイルの設定 - Qiita