Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In rspec you can either create a mock or a double. These two seem to be almost the same thing and I can't find anything in the documentation that disambiguates them.

What's the difference?

share|improve this question

2 Answers

up vote 13 down vote accepted

Both mock and stub are aliases of the more generic double. Like context and describe, they can be used interchangeably to make the intent of the specs more clear. This is described in a lot more detail in The RSpec Book.

share|improve this answer
2  
Also documentation recommend to use double over mock and stub: You can also use the mock and stub methods to create test doubles, however these methods are there for backward compatibility only and will likely be deprecated and then removed from future versions (relishapp.com/rspec/rspec-mocks) – welldan97 Nov 28 '11 at 16:50

The seem to be just aliases since :__declared_as doesn't seem to be used but for messages.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.