blob: 11116af7dbbb0885984166e0f28144f291cb2f07 (
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 { create(:issue, project: project) }
reply_key { SentNotification.reply_key }
end
end
|