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