mirror of
https://github.com/glitch-soc/mastodon
synced 2025-04-27 16:54:52 +00:00
6 lines
165 B
Ruby
6 lines
165 B
Ruby
Fabricator(:user) do
|
|
account
|
|
email { sequence(:email) { |i| "#{i}#{Faker::Internet.email}" } }
|
|
password "123456789"
|
|
confirmed_at { Time.now }
|
|
end
|