diff options
author | Reuben Pereira <rpereira@gitlab.com> | 2019-01-31 10:05:29 +0000 |
---|---|---|
committer | Sean McGivern <sean@gitlab.com> | 2019-01-31 10:05:29 +0000 |
commit | 5841a7d5efe772a9a8f09144b84fcb9aee906c4c (patch) | |
tree | e966d385aea7c9a669ef7cd6d77a8874c14bb5de /spec/factories | |
parent | ab8b77a87c99a5b83050e2e9d588d4940288d754 (diff) | |
download | gitlab-ce-5841a7d5efe772a9a8f09144b84fcb9aee906c4c.tar.gz |
Update Sentry client to get project list
Diffstat (limited to 'spec/factories')
-rw-r--r-- | spec/factories/error_tracking/project.rb | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/spec/factories/error_tracking/project.rb b/spec/factories/error_tracking/project.rb new file mode 100644 index 00000000000..5e9219b241f --- /dev/null +++ b/spec/factories/error_tracking/project.rb @@ -0,0 +1,15 @@ +# frozen_string_literal: true + +FactoryBot.define do + factory :error_tracking_project, class: Gitlab::ErrorTracking::Project do + id '1' + name 'Sentry Example' + slug 'sentry-example' + status 'active' + organization_name 'Sentry' + organization_id '1' + organization_slug 'sentry' + + skip_create + end +end |