This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2023-02-21 16:55:31 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-02-14 11:59:26 -08:00
|
|
|
Fabricator(:report) do
|
2017-04-14 02:10:28 -07:00
|
|
|
account
|
2022-01-17 00:41:33 -08:00
|
|
|
target_account { Fabricate(:account) }
|
2023-02-18 14:38:14 -08:00
|
|
|
comment 'You nasty'
|
2022-01-17 00:41:33 -08:00
|
|
|
action_taken_at nil
|
2017-02-14 11:59:26 -08:00
|
|
|
end
|