mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-01 20:45:56 +00:00
7 lines
165 B
Ruby
7 lines
165 B
Ruby
Fabricator(:user) do
|
|
account
|
|
email { sequence(:email) { |i| "#{i}#{Faker::Internet.email}" } }
|
|
password "123456789"
|
|
confirmed_at { Time.now }
|
|
end
|