debian-mirror-gitlab/spec/factories/remote_mirrors.rb
2019-12-21 20:55:43 +05:30

9 lines
189 B
Ruby

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