Sha256: cd10bde249270626b1ed6017ba8d60529c15705aecc136cf7e07037adc402eed
Contents?: true
Size: 380 Bytes
Versions: 18
Compression:
Stored size: 380 Bytes
Contents
require 'database_cleaner' RSpec.configure do |config| config.before(:suite) do DatabaseCleaner.strategy = :transaction DatabaseCleaner.clean_with :truncation end config.before do DatabaseCleaner.strategy = RSpec.current_example.metadata[:js] ? :truncation : :transaction DatabaseCleaner.start end config.after do DatabaseCleaner.clean end end
Version data entries
18 entries across 18 versions & 2 rubygems