Fix profile update spec

This commit is contained in:
Raphael 2010-10-21 10:39:19 -07:00
parent c58b4706a5
commit 35a830aa03

View file

@ -143,13 +143,13 @@ describe User do
context 'profiles' do
it 'should be able to update their profile and send it to their friends' do
updated_profile = {:profile => {
updated_profile = {
:first_name => 'bob',
:last_name => 'billytown',
:image_url => "http://clown.com"}}
:image_url => "http://clown.com"}
user.update_profile(updated_profile).should be true
user.profile.image_url.should == "http://clown.com"
user.reload.profile.image_url.should == "http://clown.com"
end
end