foodsoft/plugins/messages/spec/factories/message.rb
Philipp Rothmann eba58fc191 wip: add messages tests
relates to #52
2023-02-17 13:40:45 +01:00

12 lines
No EOL
272 B
Ruby

require 'factory_bot'
FactoryBot.define do
factory :message do
sender {create :user}
subject { Faker::Lorem.words(number: 7) }
body { Faker::Lorem.words(number: 42)}
created_at {Time.now}
private { false }
send_method { 'recipients' }
end
end