Arup,
Can you post your spec and exception. These should work on 2.14. If you are on RSpec 3, you need to either switch to the new syntax (https://www.relishapp.com/rspec/rspec-mocks/v/3-0/docs/basics/allowing-messages) or configure the old syntax (https://www.relishapp.com/rspec/rspec-mocks/v/3-0/docs/old-syntax).
Here is a sample with the new syntax:
allow(obj).to receive(:message).and_return(value)
Cheers!
--
You received this message because you are subscribed to the Google Groups "rspec" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rspec+un...@googlegroups.com.
To post to this group, send email to rs...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rspec/CAKxHnE1pcqwjoFukaqX9BymAyF_xGhm_GiUeOgk6DnqMg1zHqA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.
Arup,
Can you post your spec and exception. These should work on 2.14. If you are on RSpec 3, you need to either switch to the new syntax (https://www.relishapp.com/rspec/rspec-mocks/v/3-0/docs/basics/allowing-messages) or configure the old syntax (https://www.relishapp.com/rspec/rspec-mocks/v/3-0/docs/old-syntax).
Here is a sample with the new syntax:
allow(obj).to receive(:message).and_return(value)Cheers
That’s stating your spec passed. Meaning it recognized your stub syntax. However, you have not explicitly configured the “should” syntax. RSpec is warning you that you should take action to correct this. The message is giving you two options:
expect syntax (https://www.relishapp.com/rspec/rspec-mocks/v/3-0/docs/basics/allowing-messages)should syntax (https://www.relishapp.com/rspec/rspec-mocks/v/3-0/docs/old-syntax)--
You received this message because you are subscribed to the Google Groups "rspec" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rspec+un...@googlegroups.com.
To post to this group, send email to rs...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rspec/64c0b722-7585-4903-8926-5a4d350a55b3%40googlegroups.com.