Hi, I see a really weird behavior there, the following test passes:
it "test", :focus do
doc = Factory.build(:document)
doc.should_receive(:update_project!).exactly(2).times
doc.save
end
But when I do:
def update_project!
binding.pry
#some stuff
end
I enter the method 3 times through pry...
3 vs 2, who is right?
_______________________________________________
rspec-users mailing list
[email protected]
http://rubyforge.org/mailman/listinfo/rspec-users
