mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-08-16 17:13:01 +00:00
9 lines
220 B
Ruby
9 lines
220 B
Ruby
# 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
|