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: c2febf5b4382a750e6a65a9fa8c49b5d98dee5e2 (plain)
1
2
3
4
5
6
7
8
FactoryGirl.define do
  factory :sent_notification do
    project
    recipient factory: :user
    noteable { create(:issue, project: project) }
    reply_key { SentNotification.reply_key }
  end
end