I notice that a lot of people prefer mocha over rspec's built in mocking framework. Can someone explain the advantages of mocha, or any alternative, over rspec's built in mocking framework?
|
|
|
|
|
|
|
One specific feature I really like is being able to stub out all instances of a class. A lot of times I do something like the following with rspec mocks:
with mocha that becomes
I find the mocha version clearer and more explicit. |
||
|
|
|
As far as I know Mocha supports Double Injections (aka Partial Mocking, which is also supported in rr), not sure that RSpec supports this feature too. Also, for those who prefer to switch between testing frameworks, mocha is a universal solution applicable for Test/Unit, Shoulda, etc. Using RSpec mocking with all these libs will be an overkill. |
||
|
|
|
|
I for one use mocha because I don't use rspec. I use test/unit, and test/unit doesn't have stubbing and mocking built-in. |
||
|
|
