mirror of
https://github.com/astuto/astuto.git
synced 2025-12-16 03:37:56 +01:00
9 lines
166 B
Ruby
9 lines
166 B
Ruby
FactoryBot.define do
|
|
factory :user do
|
|
sequence(:email) { |n| "user#{n}@example.com" }
|
|
|
|
full_name { "First Last" }
|
|
password { "password" }
|
|
end
|
|
end
|