debian-mirror-gitlab/spec/factories/ci/ref.rb

9 lines
150 B
Ruby
Raw Normal View History

2020-04-08 14:13:33 +05:30
# frozen_string_literal: true
FactoryBot.define do
factory :ci_ref, class: 'Ci::Ref' do
2020-06-23 00:09:42 +05:30
ref_path { 'refs/heads/master' }
2020-04-08 14:13:33 +05:30
project
end
end