mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-05-10 16:54:38 -04:00
17 lines
358 B
Ruby
17 lines
358 B
Ruby
# Read about factories at https://github.com/thoughtbot/factory_girl
|
|
|
|
FactoryGirl.define do
|
|
factory :notification, aliases: [:message] do
|
|
sender
|
|
recipient
|
|
subject "MyString"
|
|
body "MyText"
|
|
read false
|
|
post
|
|
|
|
factory :no_email_notification do
|
|
recipient { FactoryGirl.create(:no_email_notifications_member) }
|
|
end
|
|
end
|
|
end
|