debian-mirror-gitlab/spec/factories/gitaly/tag.rb

10 lines
187 B
Ruby
Raw Normal View History

2018-11-08 19:23:39 +05:30
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