summaryrefslogtreecommitdiff
path: root/spec/factories/error_tracking/project.rb
blob: 4cbec312622605c0f7c1a51d7ba1bf6cbae084d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

FactoryBot.define do
  factory :error_tracking_project, class: 'Gitlab::ErrorTracking::Project' do
    id { '1' }
    name { 'Sentry Example' }
    slug { 'sentry-example' }
    status { 'active' }
    organization_name { 'Sentry' }
    organization_id { '1' }
    organization_slug { 'sentry' }

    skip_create
  end
end