Skip to content
Extraits de code Groupes Projets
Valider 1aac60be rédigé par Raphael Sofaer's avatar Raphael Sofaer
Parcourir les fichiers

Make sure that not deleting the service_users doesn't leave them stale

parent 7d0c7967
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
...@@ -47,6 +47,6 @@ class Services::Facebook < Service ...@@ -47,6 +47,6 @@ class Services::Facebook < Service
su.attach_local_models su.attach_local_models
su su
} }
ServiceUser.import(data) ServiceUser.import(data, :on_duplicate_key_update => [:updated_at, :contact_id, :person_id, :request_id, :invitation_id, :photo_url, :name])
end end
end end
...@@ -71,6 +71,18 @@ JSON ...@@ -71,6 +71,18 @@ JSON
@service.save_friends @service.save_friends
@service.service_users.first.person.should == @user2.person @service.service_users.first.person.should == @user2.person
end end
it 'overwrites local model information' do
@service.save_friends
su = @service.service_users.first
su.person.should == @user2.person
su.contact.should == nil
connect_users_with_aspects(alice, @user2)
@service.save_friends
su.person.should == @user2.person
su.reload.contact.should == alice.contact_for(@user2.person)
end
end end
describe '#finder' do describe '#finder' do
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter