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

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

FactoryBot.define do
  factory :issue_email_participant do
    issue
    email { generate(:email) }
  end
end