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

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

FactoryBot.define do
  factory :callout, class: 'Users::Callout' do
    feature_name { :gke_cluster_integration }

    user
  end
end