summaryrefslogtreecommitdiff
path: root/spec/factories/projects/ci_feature_usages.rb
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