toda
Results
1
issues of
toda
`spec/support/database_rewrider.rb` ```ruby # frozen_string_literal: true require 'rake' RSpec.configure do |config| except_tables = %w[ hoge ] config.before(:suite) do DatabaseRewinder.strategy = [except: except_tables] DatabaseRewinder.clean_all end config.after do DatabaseRewinder.clean end end ``` ```bash...