Welcome to mirror list, hosted at ThFree Co, Russian Federation.

generic_commit_statuses.rb « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ea86dddcaf8a5ae8103216c0327ca9c4c8c67614 (plain)
1
2
3
4
5
6
7
8
# 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