summaryrefslogtreecommitdiff
path: root/spec/factories/sent_notifications.rb
blob: 8087206723389184200a6952c0af856a8b3a40e5 (plain)
1
2
3
4
5
6
7
8
FactoryBot.define do
  factory :sent_notification do
    project
    recipient factory: :user
    noteable { create(:issue, project: project) }
    reply_key { SentNotification.reply_key }
  end
end