debian-mirror-gitlab/spec/factories/gitaly/tag.rb
2019-10-12 21:52:04 +05:30

12 lines
218 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