rails_template/spec/factories/users.rb

9 lines
159 B
Ruby
Raw Normal View History

# frozen_string_literal: true
FactoryBot.define do
factory :user do
email { Faker::Internet.email }
2020-03-22 09:44:05 -06:00
password { Faker::Internet.password }
end
end