Unit Testing Django Apps with mock

Jeremy Boyd https://github.com/boydjj

Django's "unit test" $\ne$ normal "unit test"


In [ ]:

The mock library

Provides two big utilities

  • patch
  • mock and MagicMock

In [2]:
#from mock import patch

What's a Mock?

  • An object that "has" every attribute (they are all Mock's too)
  • ...too fast