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
Jason Denney 189137ba9d Almost usable, still a lot of work left
-Moved bikes to User model instead of profile
-User can copy user log to a bike log with new actsasloggable
-Added user stats
-some css was messing up checkboxes, need to figure out which stylesheet was doing that
2012-12-31 15:38:34 -05:00

12 lines
221 B
Ruby

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