rails_template/spec/factories/users.rb

9 lines
159 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :user do
email { Faker::Internet.email }
password { Faker::Internet.password }
end
end