mirror of
https://github.com/fspc/BikeShed-1.git
synced 2025-03-12 13:53:22 -04:00
12 lines
221 B
Ruby
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
|