11 lines
177 B
Ruby
11 lines
177 B
Ruby
|
FactoryBot.define do
|
||
|
factory :event do
|
||
|
name { 'MyString' }
|
||
|
value { 1.5 }
|
||
|
account_id { 1 }
|
||
|
inbox_id { 1 }
|
||
|
user_id { 1 }
|
||
|
conversation_id { 1 }
|
||
|
end
|
||
|
end
|