mirror of
https://github.com/mastodon/mastodon.git
synced 2025-11-27 18:10:58 +00:00
11 lines
264 B
Ruby
11 lines
264 B
Ruby
# frozen_string_literal: true
|
|
|
|
Fabricator(:collection) do
|
|
account { Fabricate.build(:account) }
|
|
name { sequence(:name) { |i| "Collection ##{i}" } }
|
|
description 'People to follow'
|
|
local true
|
|
sensitive false
|
|
discoverable true
|
|
end
|