You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
313 B
9 lines
313 B
# 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 |
|
created_at { 60.days.ago } |
|
end
|
|
|