8 lines
200 B
Ruby
8 lines
200 B
Ruby
FactoryGirl.define do
|
|
factory :sent_notification do
|
|
project
|
|
recipient factory: :user
|
|
noteable { create(:issue, project: project) }
|
|
reply_key { SentNotification.reply_key }
|
|
end
|
|
end
|