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

remote_mirrors.rb « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: adc7da275222704af32bd618db78b945cd71c0cb (plain)
1
2
3
4
5
6
FactoryBot.define do
  factory :remote_mirror, class: 'RemoteMirror' do
    association :project, :repository
    url "http://foo:bar@test.com"
  end
end