debian-mirror-gitlab/spec/rake_helper.rb
2021-11-11 11:23:49 +05:30

18 lines
350 B
Ruby

# frozen_string_literal: true
require 'spec_helper'
require 'rake'
RSpec.configure do |config|
config.include RakeHelpers
config.before(:all) do
Rake.application.rake_require 'tasks/gitlab/helpers'
Rake::Task.define_task :environment
end
config.after(:all) do
delete_from_all_tables!(except: deletion_except_tables)
end
end