8 lines
190 B
Ruby
8 lines
190 B
Ruby
|
Fabricator(:user) do
|
||
|
account
|
||
|
email { sequence(:email) { |i| "#{i}#{Faker::Internet.email}" } }
|
||
|
password "123456789"
|
||
|
confirmed_at { Time.zone.now }
|
||
|
agreement true
|
||
|
end
|