Chatwoot/spec/factories/facebook_message/incoming_fb_text_message.rb

13 lines
410 B
Ruby
Raw Normal View History

# frozen_string_literal: true
FactoryBot.define do
factory :incoming_fb_text_message, class: Hash do
sender { { id: '3383290475046708' } }
recipient { { id: '117172741761305' } }
message { { mid: 'm_KXGKDUpO6xbVdAmZFBVpzU1AhKVJdAIUnUH4cwkvb_K3iZsWhowDRyJ_DcowEpJjncaBwdCIoRrixvCbbO1PcA', text: 'facebook message' } }
text { 'facebook message' }
initialize_with { attributes }
end
end