Welcome to mirror list, hosted at ThFree Co, Russian Federation.

csv_import.rb « issues « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 94688cf6232fb27a1387ebba73b97db5bee0fc20 (plain)
1
2
3
4
5
6
7
8
# frozen_string_literal: true

FactoryBot.define do
  factory :issue_csv_import, class: 'Issues::CsvImport' do
    project
    user
  end
end