summaryrefslogtreecommitdiff
path: root/spec/factories/sent_notifications.rb
blob: f10a3235202ffd0df5b6593f28322eb3e183c0fa (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

FactoryBot.define do
  factory :sent_notification do
    project
    recipient { project.creator }
    noteable { association(:issue, project: project) }
    reply_key { SentNotification.reply_key }
  end
end