2023-03-10 11:12:51 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
Fabricator(:encrypted_message) do
|
2023-06-10 16:29:01 +00:00
|
|
|
device { Fabricate.build(:device) }
|
|
|
|
from_account { Fabricate.build(:account) }
|
2023-03-10 11:12:51 +00:00
|
|
|
from_device_id { Faker::Number.number(digits: 5) }
|
|
|
|
end
|