1
0
Fork 1
mirror of https://github.com/mastodon/mastodon.git synced 2025-01-18 12:24:35 +00:00
mastodon/spec/fabricators/account_migration_fabricator.rb

9 lines
284 B
Ruby

# frozen_string_literal: true
Fabricator(:account_migration) do
account
target_account { |attrs| Fabricate(:account, also_known_as: [ActivityPub::TagManager.instance.uri_for(attrs[:account])]) }
acct { |attrs| attrs[:target_account].acct }
followers_count 1234
end