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

project.rb « error_tracking « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 885d398d4332adbfe6f4e2a890b019f8a4bdd56b (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