mirror of
https://github.com/fspc/BikeShed-1.git
synced 2025-02-28 16:53:23 -05:00
12 lines
341 B
Ruby
12 lines
341 B
Ruby
FactoryGirl.define do
|
|
factory :user_profile do
|
|
user_id 1
|
|
addrStreet1 { Faker::Address.street_address }
|
|
addrStreet2 { Faker::Address.secondary_address }
|
|
addrCity { Faker::Address.city }
|
|
addrState { Faker::Address.state_abbr }
|
|
addrZip { Faker::Address.zip_code }
|
|
phone { Faker::PhoneNumber.cell_phone }
|
|
end
|
|
end
|