gitlab-org--gitlab-foss/spec/factories/remote_mirrors.rb

9 lines
185 B
Ruby
Raw Normal View History

# frozen_string_literal: true
FactoryBot.define do
factory :remote_mirror, class: 'RemoteMirror' do
association :project, :repository
url "http://foo:bar@test.com"
end
end