Starter project for getting started with TDD in Python. Based on [https://github.com/raniz85/python-template].
The file _tests/test_calculator.py contains one test case and a few in comments. Start by coming up with a few test cases and add them to the lists, then implement them one at a time, test-driving the solution forwards.
Refer to the template for more information about what the starter contains.
There's a makefile that can be used to run all the tests. Execute:
$ make test
to run all the tests.