You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mastodon/spec/fabricators/instance_moderation_note_fa...

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