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: 11116af7dbbb0885984166e0f28144f291cb2f07 (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

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