1
0
mirror of https://github.com/fspc/BikeShed-1.git synced 2025-02-28 16:53:23 -05:00
BikeShed-1/spec/factories/user_profiles.rb
2013-11-03 13:52:43 -05:00

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