vote up 3 vote down star

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?

flag

59% accept rate

3 Answers

vote up 1 vote down check

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|flag
any_instance is probably the reason to use Mocha. It's incredibly powerful and can save a lot of time. – Brian Hogan Sep 13 at 6:18
vote up 1 vote down

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|flag
vote up 0 vote down

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|flag

Your Answer

Get an OpenID
or

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