Top "Python-mock" questions

A test utility that patches objects with user-defined code or data.

How to patch globally in pytest?

I use pytest quite a bit for my code. Sample code structure looks like this. The entire codebase is python-2.7 …

python tdd pytest python-mock
Django ORM - mock values().filter() chain

I am trying to mock a chained call on the Djangos model.Manager() class. For now I want to mock …

python django django-orm python-mock django-nose
How to mock a list in Python?

For example, I have some code which tries to access a list: def some_code(): script_dir = os.path.dirname(…

python unit-testing mocking pytest python-mock