mirror of
https://iceshrimp.dev/blueb/Chuckya-fe-standalone.git
synced 2026-01-13 06:23:15 -08: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
|