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

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

FactoryBot.define do
  factory :bulk_import_configuration, class: 'BulkImports::Configuration' do
    association :bulk_import, factory: :bulk_import

    url { 'https://gitlab.example' }
    access_token { 'token' }
  end
end