debian-mirror-gitlab/spec/factories/gitaly/tag.rb
2020-03-13 15:44:24 +05:30

12 lines
220 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :gitaly_tag, class: 'Gitaly::Tag' do
skip_create
name { 'v3.1.4' }
message { 'Pie release' }
target_commit factory: :gitaly_commit
end
end