debian-mirror-gitlab/spec/factories/project_error_tracking_settings.rb
2019-02-13 22:33:31 +05:30

10 lines
290 B
Ruby

# 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'
end
end