summaryrefslogtreecommitdiff
path: root/spec/factories/project_error_tracking_settings.rb
blob: 424f462e1a0c8b57b4df00e09387df05c6e2084a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# frozen_string_literal: true

FactoryBot.define do
  factory :project_error_tracking_setting, class: 'ErrorTracking::ProjectErrorTrackingSetting' do
    project
    api_url { 'https://sentrytest.gitlab.com/api/0/projects/sentry-org/sentry-project' }
    enabled { true }
    token { 'access_token_123' }
    project_name { 'Sentry Project' }
    organization_name { 'Sentry Org' }

    trait :disabled do
      enabled { false }
    end

    trait :integrated do
      integrated { true }
    end
  end
end