🔥

RSpecでSQL実行ログを表示する

2023/08/09に公開
rails_helper.rb
config.before(:each) do
  ActiveRecord::Base.logger = Logger.new(STDOUT)
end

以上

Discussion