8 lines
195 B
Ruby
8 lines
195 B
Ruby
FactoryGirl.define do
|
|
factory :sent_notification do
|
|
project factory: :empty_project
|
|
recipient factory: :user
|
|
noteable factory: :issue
|
|
reply_key "0123456789abcdef" * 2
|
|
end
|
|
end
|