mirror of
https://github.com/mastodon/mastodon.git
synced 2025-07-10 22:43:14 +00:00
8 lines
228 B
Ruby
8 lines
228 B
Ruby
# frozen_string_literal: true
|
|
|
|
Fabricator(:instance_moderation_note) do
|
|
domain { sequence(:domain) { |i| "#{i}#{Faker::Internet.domain_name}" } }
|
|
account { Fabricate.build(:account) }
|
|
content { Faker::Lorem.sentence }
|
|
end
|