9 lines
198 B
Ruby
9 lines
198 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :user do
|
|
email { Faker::Internet.email }
|
|
password { Faker::Internet.password }
|
|
password_confirmation { password }
|
|
end
|
|
end
|