Test Driven Development with Python and Django

david 9a960aa755 Model for list Items and associated migration преди 6 години
lists 9a960aa755 Model for list Items and associated migration преди 6 години
superlists 1f17db0546 Refactored: HP view to use a template. преди 6 години
.gitignore c00b3f8b3c Init Commit преди 6 години
README.md 4e5f440209 README.md updated to Chapter 5! преди 6 години
WHERE.txt c00b3f8b3c Init Commit преди 6 години
functional_tests.py 951fd68d0f FT refactored, made a function to test table easily. преди 6 години
init_test.py c00b3f8b3c Init Commit преди 6 години
manage.py c00b3f8b3c Init Commit преди 6 години
refactoring_cat.gif 1f17db0546 Refactored: HP view to use a template. преди 6 години

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!