debian-mirror-gitlab/spec/factories/serverless/domain.rb

12 lines
300 B
Ruby
Raw Normal View History

2020-04-08 14:13:33 +05:30
# frozen_string_literal: true
FactoryBot.define do
factory :serverless_domain, class: '::Serverless::Domain' do
function_name { 'test-function' }
2021-01-29 00:20:46 +05:30
serverless_domain_cluster { association(:serverless_domain_cluster) }
environment { association(:environment) }
2020-04-08 14:13:33 +05:30
skip_create
end
end