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

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

FactoryBot.define do
  factory :issue_email, class: 'Issue::Email' do
    issue
    email_message_id { generate(:short_text) }
  end
end