mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-03-22 21:37:48 +01:00
8 lines
150 B
Ruby
8 lines
150 B
Ruby
FactoryBot.define do
|
|
factory :notification do
|
|
target_type { "MyString" }
|
|
target_id { 1 }
|
|
recipient_id { 1 }
|
|
new { false }
|
|
end
|
|
end
|