mirror of
https://github.com/glitch-soc/mastodon
synced 2025-09-10 10:31:11 +00:00
8 lines
199 B
Ruby
8 lines
199 B
Ruby
# frozen_string_literal: true
|
|
|
|
Fabricator(:account_warning) do
|
|
account { Fabricate.build(:account) }
|
|
target_account(fabricator: :account)
|
|
text { Faker::Lorem.paragraph }
|
|
action 'suspend'
|
|
end
|