J'ai ça dans mon test
Project.should_receive(:find).with(@project).and_return(@project)
mais quand l'objet reçoit cet appel de méthode deux fois, je dois faire
Project.should_receive(:find).with(@project).and_return(@project)
Project.should_receive(:find).with(@project).and_return(@project)
Y a-t-il un moyen de dire quelque chose comme
Project.should_receive(:find).with(@project).and_return(@project).times(2)
any_instance
?