up vote 8 down vote favorite
1
share [g+] share [fb]

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?

link|improve this question

65% accept rate
feedback

3 Answers

up vote 11 down vote accepted

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:

stub_car = mock(Car)
stub_car.stub!(:speed).and_return(100)
Car.stub!(:new).and_return(stub_car)

with mocha that becomes

Car.any_instance.stubs(:speed).returns(100)

I find the mocha version clearer and more explicit.

link|improve this answer
1  
any_instance is probably the reason to use Mocha. It's incredibly powerful and can save a lot of time. – Brian Hogan Sep 13 '09 at 6:18
1  
You can do this with RSpec 2 now: relishapp.com/rspec/rspec-mocks/docs/method-stubs/… – Matthew Ratzloff Sep 14 '11 at 18:51
feedback

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.

link|improve this answer
feedback

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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