1
0
mirror of https://github.com/fspc/BikeShed-1.git synced 2025-03-12 13:53:22 -04:00
BikeShed-1/spec/factories/user_profiles.rb

12 lines
221 B
Ruby
Raw Normal View History

2012-12-23 09:02:07 -05:00
FactoryGirl.define do
factory :user_profile do
user_id 1
addrStreet1 "Charles Street"
addrStreet2 "Apt #42"
addrCity "Baltimore"
addrState "MD"
addrZip "21231"
phone "(410)8675309"
end
end