debian-mirror-gitlab/spec/factories/error_tracking/project.rb

16 lines
354 B
Ruby
Raw Normal View History

2019-03-02 22:35:43 +05:30
# frozen_string_literal: true
FactoryBot.define do
2020-03-13 15:44:24 +05:30
factory :error_tracking_project, class: 'Gitlab::ErrorTracking::Project' do
2019-12-21 20:55:43 +05:30
id { '1' }
name { 'Sentry Example' }
slug { 'sentry-example' }
status { 'active' }
organization_name { 'Sentry' }
organization_id { '1' }
organization_slug { 'sentry' }
2019-03-02 22:35:43 +05:30
skip_create
end
end