mirror of
https://github.com/kikobar/mastodon.git
synced 2024-11-06 01:41:57 +00:00
8 lines
145 B
Ruby
8 lines
145 B
Ruby
# frozen_string_literal: true
|
|
|
|
Fabricator(:account_moderation_note) do
|
|
content 'MyText'
|
|
account
|
|
target_account { Fabricate(:account) }
|
|
end
|