This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2023-03-10 12:12:51 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
Fabricator(:encrypted_message) do
|
2023-06-10 18:29:01 +02:00
|
|
|
device { Fabricate.build(:device) }
|
|
|
|
from_account { Fabricate.build(:account) }
|
2023-03-10 12:12:51 +01:00
|
|
|
from_device_id { Faker::Number.number(digits: 5) }
|
|
|
|
end
|