Test Driven
Development Demo with PyTest
TDD

Discussed in hpr4075
Write a new test and run it. It should fail.
Write the minimal code that will pass the test
Optionally - refactor the code while ensure the tests continue to
pass

PyTest

Framework for writing software tests with python
Normally used to test python projects, but could test any...