Test Driven Development with Python and Django

david 5efc7d0993 README.md updated for Chapter 6! 5 years ago
lists 41929a63c9 Redirects after POST, shows all items, and only adds items if it's not blank! 5 years ago
superlists 1f17db0546 Refactored: HP view to use a template. 5 years ago
.gitignore c00b3f8b3c Init Commit 5 years ago
README.md 5efc7d0993 README.md updated for Chapter 6! 5 years ago
SCRATCHPAD.txt 6dff50f717 Added Scratchpad notes to repo 5 years ago
WHERE.txt c00b3f8b3c Init Commit 5 years ago
functional_tests.py 951fd68d0f FT refactored, made a function to test table easily. 5 years ago
init_test.py c00b3f8b3c Init Commit 5 years ago
manage.py c00b3f8b3c Init Commit 5 years ago
refactoring_cat.gif 1f17db0546 Refactored: HP view to use a template. 5 years ago

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!