mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-23 00:38:07 +01:00
4 lines
157 B
Ruby
4 lines
157 B
Ruby
Fabricator(:account) do
|
|
username { sequence(:username) { |i| "#{Faker::Internet.user_name(nil, %w(_))}#{i}" } }
|
|
last_webfingered_at { Time.now.utc }
|
|
end
|