Retrospring/spec/factories/notifications.rb

9 lines
150 B
Ruby
Raw Normal View History

2020-04-19 08:27:42 -07:00
FactoryBot.define do
2014-12-21 13:12:59 -08:00
factory :notification do
2020-04-19 08:27:42 -07:00
target_type { "MyString" }
target_id { 1 }
recipient_id { 1 }
new { false }
2014-12-21 13:12:59 -08:00
end
end