mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-23 16:58:06 +01:00
8 lines
169 B
Ruby
8 lines
169 B
Ruby
# frozen_string_literal: true
|
|
|
|
Fabricator(:account_warning) do
|
|
account
|
|
target_account(fabricator: :account)
|
|
text { Faker::Lorem.paragraph }
|
|
action 'suspend'
|
|
end
|