Im having a hard time with a rspec controller test im writting, I need to
stub! the User.find call twice once to return the owning user and once to
return the viewing user. however when I attempt

User.stub!(:find).with(1).and_return(@user)
User.stub!(:find).with(2).and_return(@user2)

the second call returns
undefined local variable or method `find' for #<Class:0x7faf42964d00>

I've managed to replicate the behavior outside of this specific test and I
know the code works as I can test it manually.

Any ideas as to why this is not working? or better still how to get it
working.

Thanks for the help in advance
-- 
View this message in context: 
http://www.nabble.com/Rspec---stubbing-same-class-multiple-times-with-different-conditions-tp18446600p18446600.html
Sent from the rspec-users mailing list archive at Nabble.com.

_______________________________________________
rspec-users mailing list
[email protected]
http://rubyforge.org/mailman/listinfo/rspec-users

Reply via email to