summaryrefslogtreecommitdiff
path: root/spec/factories/issue_email_participants.rb
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