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