In this repository I will work through Harry J.W. Percival's book "Test-Driven Development with Python".
Go and visit the book's home planet: http://www.obeythetestinggoat.com/
-
Check prerequisites (you might only need Django for now)
-
Start Server
python3 manage.py runserver -
Point your favourite browser to home
-
Running the Django dev server
python3 manage.py runserver -
Running the functional tests
python3 manage.py test functional_tests -
Running the unit tests
python3 manage.py test lists