summaryrefslogtreecommitdiff
path: root/spec/factories/gitaly/tag.rb
blob: a7a84753090cc9dbaa8c2cbe8065ddf3ab11329e (plain)
1
2
3
4
5
6
7
8
9
10
11
# 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