Use truncation for DataMapper

This commit is contained in:
Zachary Scott 2013-11-04 20:33:06 -05:00
parent f4108b36c2
commit f251f94712
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
DatabaseCleaner[:active_record].strategy = :transaction if defined? ActiveRecord
DatabaseCleaner[:data_mapper].strategy = :transaction if defined? DataMapper
DatabaseCleaner[:data_mapper].strategy = :truncation if defined? DataMapper
DatabaseCleaner[:mongoid].strategy = :truncation if defined? Mongoid
DatabaseCleaner[:mongo_mapper].strategy = :truncation if defined? MongoMapper
@ -8,7 +8,7 @@ RSpec.configure do |config|
#DatabaseCleaner.clean_with :truncation
DatabaseCleaner.clean_with :truncation if defined? ActiveRecord
DatabaseCleaner.clean_with :transaction if defined? DataMapper
DatabaseCleaner.clean_with :truncation if defined? DataMapper
DatabaseCleaner.clean_with :truncation if defined? Mongoid
DatabaseCleaner.clean_with :truncation if defined? MongoMapper
end