Test Driven Development with Python and Django

david 1f17db0546 Refactored: HP view to use a template. há 5 anos atrás
lists 1f17db0546 Refactored: HP view to use a template. há 5 anos atrás
superlists 1f17db0546 Refactored: HP view to use a template. há 5 anos atrás
.gitignore c00b3f8b3c Init Commit há 5 anos atrás
README.md b27801e3bf README.md Updated Last At Link, We are now at Chapter 4! há 5 anos atrás
WHERE.txt c00b3f8b3c Init Commit há 5 anos atrás
functional_tests.py 067c551aee FT now checks we can input a to-do item há 5 anos atrás
init_test.py c00b3f8b3c Init Commit há 5 anos atrás
manage.py c00b3f8b3c Init Commit há 5 anos atrás
refactoring_cat.gif 1f17db0546 Refactored: HP view to use a template. há 5 anos atrás

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!