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

pipeline_chat_data.rb « ci « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1f61c98f5427df0b9a8ff0e8c3f1c29d6fe65896 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

FactoryBot.define do
  factory :ci_pipeline_chat_data, class: 'Ci::PipelineChatData' do
    pipeline factory: :ci_empty_pipeline
    chat_name
    response_url { "https://response.com" }
  end
end