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