summaryrefslogtreecommitdiff
path: root/spec/factories/remote_mirrors.rb
blob: 124c0510cabb296d721179ea4e2043dbb270fe06 (plain)
1
2
3
4
5
6
7
8
# frozen_string_literal: true

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