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

9 lines
200 B
Ruby
Raw Normal View History

2016-06-02 11:05:42 +05:30
FactoryGirl.define do
factory :sent_notification do
2017-09-10 17:25:29 +05:30
project
2016-06-02 11:05:42 +05:30
recipient factory: :user
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