gitlab-org--gitlab-foss/spec/support/db_cleaner.rb

16 lines
331 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module DbCleaner
def delete_from_all_tables!(except: nil)
DatabaseCleaner.clean_with(:deletion, cache_tables: false, except: except)
end
def deletion_except_tables
[]
end
def setup_database_cleaner
DatabaseCleaner[:active_record, { connection: ActiveRecord::Base }]
end
end