summaryrefslogtreecommitdiff
path: root/spec/factories/project_error_tracking_settings.rb
blob: f90a2d17846139ae95b5ebf69a6cf7b0253dbc8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

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