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