require 'database_cleaner' RSpec.configure do |config| config.before(:suite) do DatabaseCleaner.strategy = :transaction DatabaseCleaner.clean_with(:truncation, except: %w(ar_internal_metadata countries country_translations)) end config.around(:each) do |example| DatabaseCleaner.cleaning do example.run end end end