Sha256: 840e7e58baa6e0ef6796fc36329d76c391a1b82bc860ce33284f6b782d852249
Contents?: true
Size: 284 Bytes
Versions: 7
Compression:
Stored size: 284 Bytes
Contents
# frozen_string_literal: true RSpec.configure do |config| config.before(:suite) do DatabaseCleaner.strategy = :transaction DatabaseCleaner.clean_with(:truncation) end config.around(:each) do |example| DatabaseCleaner.cleaning do example.run end end end
Version data entries
7 entries across 7 versions & 1 rubygems