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

ref.rb « ci « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bf6fa743743f49352e477d8ed23ec5a07c229371 (plain)
1
2
3
4
5
6
7
8
# frozen_string_literal: true

FactoryBot.define do
  factory :ci_ref, class: 'Ci::Ref' do
    ref_path { 'refs/heads/master' }
    project
  end
end