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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
220 B
Ruby
Raw Normal View History

2019-10-12 21:52:04 +05:30
# frozen_string_literal: true
2018-11-08 19:23:39 +05:30
FactoryBot.define do
2020-03-13 15:44:24 +05:30
factory :gitaly_tag, class: 'Gitaly::Tag' do
2018-11-08 19:23:39 +05:30
skip_create
name { 'v3.1.4' }
message { 'Pie release' }
target_commit factory: :gitaly_commit
end
end