Sha256: 6344fef39dffe078edab3d9f808a25c1f7b46c0c5882b7cb8d17a3d597a01055
Contents?: true
Size: 272 Bytes
Versions: 5
Compression:
Stored size: 272 Bytes
Contents
#encoding: utf-8 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
5 entries across 5 versions & 1 rubygems