rails_template/spec/factories/users.rb

9 lines
166 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :user do
email { Faker::Internet.email }
password { Faker::Internet.password(6, 50) }
end
end