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

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

FactoryBot.define do
  factory :serverless_domain, class: '::Serverless::Domain' do
    function_name { 'test-function' }
    serverless_domain_cluster { association(:serverless_domain_cluster) }
    environment { association(:environment) }

    skip_create
  end
end