Heads up! To view this whole video, sign in with your Courses account or enroll in your free 7-day trial. Sign In Enroll
Start a free Courses trial
to watch this video
Doctests are the simplest tests to write in Python since they're written in plain text in the docstrings you're already writing for your code.
New terms
doctest - A test written in a docstring.
doctest library - The built-in Python library for running doctests.
Running doctests
From the command line
python -m doctest your_script.py
From inside a script
import doctest
doctest.testmod()
Related Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign upRelated Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign up
You need to sign up for Treehouse in order to download course files.
Sign upYou need to sign up for Treehouse in order to set up Workspace
Sign up