Files
gitlab-ce/spec/factories/sent_notifications.rb
2020-11-20 03:09:15 +00:00

11 lines
240 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :sent_notification do
project
recipient { project.creator }
noteable { association(:issue, project: project) }
reply_key { SentNotification.reply_key }
end
end