code:

info( 'attempting to sign in' )   # I want to test it
# ...
info( 'signed in' )               # I don't care about it


spec:

@scraper.should_receive( :info ).with( 'attempting to sign in'
).at_least( 1 ).times


result:
expected :info with ("attempting to sign in") but received it with
("signed in")


question:
This is strange. How to test if method was called with specific argument
AND don't care about other possible calls of that method?
-- 
Posted via http://www.ruby-forum.com/.
_______________________________________________
rspec-users mailing list
[email protected]
http://rubyforge.org/mailman/listinfo/rspec-users

Reply via email to