debian-mirror-gitlab/spec/factories/project_error_tracking_settings.rb

13 lines
359 B
Ruby
Raw Normal View History

2019-02-15 15:39:39 +05:30
# 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'
2019-03-02 22:35:43 +05:30
project_name 'Sentry Project'
organization_name 'Sentry Org'
2019-02-15 15:39:39 +05:30
end
end