retrospring/spec/factories/notifications.rb

9 lines
150 B
Ruby
Raw Normal View History

2020-04-19 17:27:42 +02:00
FactoryBot.define do
2014-12-21 22:12:59 +01:00
factory :notification do
2020-04-19 17:27:42 +02:00
target_type { "MyString" }
target_id { 1 }
recipient_id { 1 }
new { false }
2014-12-21 22:12:59 +01:00
end
end