2019-01-07 12:55:21 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
FactoryBot.define do
|
|
|
|
factory :project_error_tracking_setting, class: ErrorTracking::ProjectErrorTrackingSetting do
|
|
|
|
project
|
2019-01-09 16:04:27 -05:00
|
|
|
api_url 'https://gitlab.com/api/0/projects/sentry-org/sentry-project'
|
2019-01-07 12:55:21 -05:00
|
|
|
enabled true
|
|
|
|
token 'access_token_123'
|
2019-02-04 07:12:24 -05:00
|
|
|
project_name 'Sentry Project'
|
|
|
|
organization_name 'Sentry Org'
|
2019-01-07 12:55:21 -05:00
|
|
|
end
|
|
|
|
end
|