Skip to content
Snippets Groups Projects
Commit 35a830aa authored by Raphael's avatar Raphael
Browse files

Fix profile update spec

parent c58b4706
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment