Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/factories/error_tracking/error.rb')
-rw-r--r--spec/factories/error_tracking/error.rb18
1 files changed, 17 insertions, 1 deletions
diff --git a/spec/factories/error_tracking/error.rb b/spec/factories/error_tracking/error.rb
index e5f2e2ca9a7..bebdffb3614 100644
--- a/spec/factories/error_tracking/error.rb
+++ b/spec/factories/error_tracking/error.rb
@@ -1,7 +1,8 @@
# frozen_string_literal: true
FactoryBot.define do
- factory :error_tracking_error, class: 'Gitlab::ErrorTracking::Error' do
+ # There is an issue to rename this class https://gitlab.com/gitlab-org/gitlab/-/issues/323342.
+ factory :error_tracking_sentry_error, class: 'Gitlab::ErrorTracking::Error' do
id { '1' }
title { 'title' }
type { 'error' }
@@ -25,4 +26,19 @@ FactoryBot.define do
skip_create
end
+
+ factory :error_tracking_error, class: 'ErrorTracking::Error' do
+ project
+ name { 'ActionView::MissingTemplate' }
+ description { 'Missing template posts/edit' }
+ actor { 'PostsController#edit' }
+ platform { 'ruby' }
+ first_seen_at { Time.now.iso8601 }
+ last_seen_at { Time.now.iso8601 }
+ status { 'unresolved' }
+
+ trait :resolved do
+ status { 'resolved' }
+ end
+ end
end