Add password to User factory

This commit is contained in:
Thor77 2019-04-23 10:48:25 +02:00
parent 22e547befa
commit 847f4a1c69
1 changed files with 1 additions and 0 deletions

View File

@ -4,5 +4,6 @@ FactoryBot.define do
factory :user do
username { Faker::Internet.unique.username }
email { Faker::Internet.unique.email }
password { Faker::Internet.password }
end
end