debian-mirror-gitlab/spec/factories/generic_commit_statuses.rb

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

9 lines
220 B
Ruby
Raw Normal View History

2022-10-11 01:57:18 +05:30
# frozen_string_literal: true
FactoryBot.define do
factory :generic_commit_status, class: 'GenericCommitStatus', parent: :commit_status do
name { 'generic' }
description { 'external commit status' }
end
end