2023-02-22 00:55:31 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-05-22 13:45:10 +01:00
|
|
|
Fabricator(:report_note) do
|
2023-06-10 17:29:01 +01:00
|
|
|
report { Fabricate.build(:report) }
|
|
|
|
account { Fabricate.build(:account) }
|
2023-02-18 22:38:14 +00:00
|
|
|
content 'Test Content'
|
2018-05-22 13:45:10 +01:00
|
|
|
end
|