9 lines
180 B
Ruby
9 lines
180 B
Ruby
|
|
||
|
FactoryGirl.define do
|
||
|
factory :user do
|
||
|
username { Faker::Internet.user_name }
|
||
|
password { Faker::Internet.password(8, 50) }
|
||
|
email { Faker::Internet.email }
|
||
|
end
|
||
|
end
|