mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-06 15:04:52 +00:00
8 lines
166 B
Ruby
8 lines
166 B
Ruby
# frozen_string_literal: true
|
|
|
|
Fabricator(:report_note) do
|
|
report { Fabricate.build(:report) }
|
|
account { Fabricate.build(:account) }
|
|
content 'Test Content'
|
|
end
|