Sha256: e04abfa5bceefcf0d65b9850958e7f760ec1ae0a0597c309b87d00af099a17e7
Contents?: true
Size: 746 Bytes
Versions: 14
Compression:
Stored size: 746 Bytes
Contents
DatabaseCleaner[:active_record].strategy = :transaction if defined? ActiveRecord DatabaseCleaner[:data_mapper].strategy = :truncation if defined? DataMapper DatabaseCleaner[:mongoid].strategy = :truncation if defined? Mongoid DatabaseCleaner[:mongo_mapper].strategy = :truncation if defined? MongoMapper RSpec.configure do |config| config.before :suite do DatabaseCleaner.clean_with :truncation if defined? ActiveRecord DatabaseCleaner.clean_with :truncation if defined? DataMapper DatabaseCleaner.clean_with :truncation if defined? Mongoid DatabaseCleaner.clean_with :truncation if defined? MongoMapper end config.before :each do DatabaseCleaner.start end config.after :each do DatabaseCleaner.clean end end
Version data entries
14 entries across 14 versions & 6 rubygems