Test Driven Development with Python and Django

david ba498eb99f FT now correctly tests 1 item, but more than that fails. 5 年 前
lists ba498eb99f FT now correctly tests 1 item, but more than that fails. 5 年 前
superlists 1f17db0546 Refactored: HP view to use a template. 5 年 前
.gitignore c00b3f8b3c Init Commit 5 年 前
README.md 4e5f440209 README.md updated to Chapter 5! 5 年 前
WHERE.txt c00b3f8b3c Init Commit 5 年 前
functional_tests.py ba498eb99f FT now correctly tests 1 item, but more than that fails. 5 年 前
init_test.py c00b3f8b3c Init Commit 5 年 前
manage.py c00b3f8b3c Init Commit 5 年 前
refactoring_cat.gif 1f17db0546 Refactored: HP view to use a template. 5 年 前

README.md

Obey The Testing Goat

TOC

Last At (Chapter 5)

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!