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

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

FactoryBot.define do
  factory :project_ci_feature_usage, class: 'Projects::CiFeatureUsage' do
    project factory: :project
    feature { :code_coverage } # rubocop: disable RSpec/EmptyExampleGroup
    default_branch { false }
  end
end