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

sentry_issue.rb « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e729095432cd5d14bb2143df1206f692ddfb4e05 (plain)
1
2
3
4
5
6
7
8
# frozen_string_literal: true

FactoryBot.define do
  factory :sentry_issue, class: 'SentryIssue' do
    issue
    sequence(:sentry_issue_identifier) { |n| 10000000 + n }
  end
end