Welcome to mirror list, hosted at ThFree Co, Russian Federation.

sent_notifications.rb « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b0174dd06b771b05cde9877ce61d779b5b5b97ea (plain)
1
2
3
4
5
6
7
8
FactoryBot.define do
  factory :sent_notification do
    project
    recipient { project.creator }
    noteable { create(:issue, project: project) }
    reply_key { SentNotification.reply_key }
  end
end