debian-mirror-gitlab/spec/factories/sent_notifications.rb

9 lines
204 B
Ruby
Raw Normal View History

2018-03-17 18:26:18 +05:30
FactoryBot.define do
2016-06-02 11:05:42 +05:30
factory :sent_notification do
2017-09-10 17:25:29 +05:30
project
2018-03-17 18:26:18 +05:30
recipient { project.creator }
2017-08-17 22:00:37 +05:30
noteable { create(:issue, project: project) }
reply_key { SentNotification.reply_key }
2016-06-02 11:05:42 +05:30
end
end