2016-02-16 22:55:24 -05:00
|
|
|
FactoryGirl.define do
|
|
|
|
factory :sent_notification do
|
2017-01-24 20:30:56 -05:00
|
|
|
project factory: :empty_project
|
2016-02-16 22:55:24 -05:00
|
|
|
recipient factory: :user
|
2017-03-21 11:28:47 -04:00
|
|
|
noteable { create(:issue, project: project) }
|
2017-03-17 15:25:52 -04:00
|
|
|
reply_key { SentNotification.reply_key }
|
2016-02-16 22:55:24 -05:00
|
|
|
end
|
|
|
|
end
|