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

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

FactoryBot.define do
  factory :plan_limits do
    plan

    trait :default_plan do
      plan factory: :default_plan
    end
  end
end