summaryrefslogtreecommitdiff
path: root/spec/factories/projects/ci_feature_usages.rb
blob: 48e5331afccaddcf766a86651a1549ce63a2c058 (plain)
1
2
3
4
5
6
7
8
9
10
# 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