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: 6287c40afe91fe4a63a683cb05357db7679cef43 (plain)
1
2
3
4
5
6
7
8
FactoryGirl.define do
  factory :sent_notification do
    project factory: :empty_project
    recipient factory: :user
    noteable factory: :issue
    reply_key "0123456789abcdef" * 2
  end
end