Test Driven Development with Python and Django

david df181de79b Made functional_tests as app, using LiveServerTestCase 5 lat temu
functional_tests df181de79b Made functional_tests as app, using LiveServerTestCase 5 lat temu
lists 41929a63c9 Redirects after POST, shows all items, and only adds items if it's not blank! 5 lat temu
superlists 1f17db0546 Refactored: HP view to use a template. 5 lat temu
.gitignore c00b3f8b3c Init Commit 5 lat temu
README.md 5efc7d0993 README.md updated for Chapter 6! 5 lat temu
SCRATCHPAD.txt df181de79b Made functional_tests as app, using LiveServerTestCase 5 lat temu
WHERE.txt c00b3f8b3c Init Commit 5 lat temu
init_test.py c00b3f8b3c Init Commit 5 lat temu
manage.py c00b3f8b3c Init Commit 5 lat temu
refactoring_cat.gif 1f17db0546 Refactored: HP view to use a template. 5 lat temu

README.md

Obey The Testing Goat

TOC

Last At (Chapter 6)

TDD Order Of Operations:

  1. Code a Test!
  2. Run test and ensure it FAILS!
  3. Write MINIMUM Code to PASS!
  4. Run test and ensure it PASSES!
  5. Rewrite code smaller/better, Refactor, DRY, etc.
  6. Run test and ensure it PASSES!
  7. Commit to a Git repo!