gitlab/spec/rake_helper.rb
Brett Walker e79c0ee5f2
Set proper work item type for issues
When building and updating
2021-09-09 12:40:37 -05:00

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