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

12 lines
341 B
Ruby
Raw Normal View History

2012-12-23 09:02:07 -05:00
FactoryGirl.define do
factory :user_profile do
user_id 1
2013-11-03 13:52:43 -05:00
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 }
2012-12-23 09:02:07 -05:00
end
end