Test Driven Development with Python and Django

david b27801e3bf README.md Updated Last At Link, We are now at Chapter 4! 5 years ago
lists ffd1f3d86f Basic View now returns Minimal HTML 5 years ago
superlists c00b3f8b3c Init Commit 5 years ago
.gitignore c00b3f8b3c Init Commit 5 years ago
README.md b27801e3bf README.md Updated Last At Link, We are now at Chapter 4! 5 years ago
WHERE.txt c00b3f8b3c Init Commit 5 years ago
functional_tests.py c00b3f8b3c Init Commit 5 years ago
init_test.py c00b3f8b3c Init Commit 5 years ago
manage.py c00b3f8b3c Init Commit 5 years ago

README.md

Obey The Testing Goat

TOC

Last At (Chapter 4)

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!