debian-mirror-gitlab/spec/factories/gitaly/tag.rb
2018-11-08 19:23:39 +05:30

10 lines
187 B
Ruby

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