summaryrefslogtreecommitdiff
path: root/spec/factories/sent_notifications.rb
blob: 78eb929c6e7d2ed51fbfa073e79d929bcc393f62 (plain)
1
2
3
4
5
6
7
8
FactoryGirl.define do
  factory :sent_notification do
    project
    recipient factory: :user
    noteable factory: :issue
    reply_key "0123456789abcdef" * 2
  end
end