2023-02-22 00:55:31 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-05-22 12:45:10 +00:00
|
|
|
Fabricator(:report_note) do
|
2023-06-10 16:29:01 +00:00
|
|
|
report { Fabricate.build(:report) }
|
|
|
|
account { Fabricate.build(:account) }
|
2024-09-06 14:58:36 +00:00
|
|
|
content { Faker::Lorem.sentences }
|
2018-05-22 12:45:10 +00:00
|
|
|
end
|