11 lines
258 B
Ruby
11 lines
258 B
Ruby
|
# 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
|