vote up 3 vote down star
2

What is your single favorite mocking library for Python?

flag

5 Answers

vote up 5 vote down

I've only used one, but I've had good results with Michael Foord's Mock: http://www.voidspace.org.uk/python/mock.html.

Michael's introduction says it better than I could:

There are already several Python mocking libraries available, so why another one?

Most mocking libraries follow the 'record -> replay' pattern of mocking. I prefer the 'action -> assertion' pattern, which is more readable and intuitive particularly when working with the Python unittest module.

...

It also provides utility functions / objects to assist with testing, particularly monkey patching.

link|flag
vote up 2 vote down

Mox, from Google

link|flag
vote up 1 vote down

I've used pMock in the past, and didn't mind it, it had pretty decent docs too. However, Foord's Mock as mentioned above is also nice.

link|flag
vote up 1 vote down

Dingus, by Gary Bernhardt.

link|flag
vote up 0 vote down

Mocker from Gustavo Niemeyer.

It's not perfect, but it is very powerful and flexible.

link|flag

Your Answer

Get an OpenID
or

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