Integrating with doctest
Let's explore how doctest can be integrated.
We'll cover the following...
The unittest module can be used with Python’s doctest module as well. If
we have created a lot of modules that have doctests in them, we will
usually want to be able to run them systematically. This is where
unittest comes in. The unittest module supports Test Discovery
starting in Python 3.2. Test Discovery basically allows unittest to look at the contents of a ...
Ask