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