mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-23 02:58:07 +01:00
f194857ac9
* cleanup pass * undo mistakes * fixed. * revert
6 lines
170 B
Ruby
6 lines
170 B
Ruby
Fabricator(:user) do
|
|
account
|
|
email { sequence(:email) { |i| "#{i}#{Faker::Internet.email}" } }
|
|
password "123456789"
|
|
confirmed_at { Time.zone.now }
|
|
end
|