taku3ukat
@taku3ukat (taku3ukat dayo)

Are you sure you want to delete the question?

If your question is resolved, you may close it.

Leaving a resolved question undeleted may help others!

We hope you find it useful!

generate helper時にテストファイルも作成したい

解決したいこと

rails generateでhelper生成時にarticle_helper_test.rbも作成されるようにしたいです。

現状の実行結果
$ rails g helper article
Running via Spring preloader in process 4096
      create  app/helpers/article_helper.rb
      invoke  test_unit
$

踏んだ手順

application.rbに以下を追記したのですが、上記から結果は変わらずです。

/(アプリ名)/config/application.rb
require_relative 'boot'

require 'rails/all'
Bundler.require(*Rails.groups)

module SampleApp
  class Application < Rails::Application
    
    config.load_defaults 6.0

    ### 追記ここから ###
    config.generators do |g|
      g.helper test_unit:true 
    end
    ### 追記ここまで ###
  end
end

上記、コードの誤りなどあればお教えいただけますと幸いです。

0

No Answers yet.

Your answer might help someone💌