2023-02-22 02:55:31 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-02-14 21:59:26 +02:00
|
|
|
Fabricator(:report) do
|
2023-06-10 19:29:01 +03:00
|
|
|
account { Fabricate.build(:account) }
|
|
|
|
target_account { Fabricate.build(:account) }
|
2023-02-19 00:38:14 +02:00
|
|
|
comment 'You nasty'
|
2022-01-17 10:41:33 +02:00
|
|
|
action_taken_at nil
|
2017-02-14 21:59:26 +02:00
|
|
|
end
|