Test Driven Development with Python and Django

david b0c4d8f687 Single user test passes, Multi user test fails, currently пре 5 година
functional_tests b0c4d8f687 Single user test passes, Multi user test fails, currently пре 5 година
lists 41929a63c9 Redirects after POST, shows all items, and only adds items if it's not blank! пре 5 година
superlists b0c4d8f687 Single user test passes, Multi user test fails, currently пре 5 година
.gitignore c00b3f8b3c Init Commit пре 5 година
README.md b0c4d8f687 Single user test passes, Multi user test fails, currently пре 5 година
SCRATCHPAD.txt b0c4d8f687 Single user test passes, Multi user test fails, currently пре 5 година
WHERE.txt c00b3f8b3c Init Commit пре 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

GitHub Repo

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!

Upgrading Selenium, Geckodriver, and Chromedriver:

  1. pip install --upgrade selenium,
  2. Download new Geckodriver, (Google "Geckodriver")
  3. Extract Geckodriver into virtenv/bin, (Python Virtual Environment)
  4. Download new Chromedriver, (Google "Chromedriver")
  5. Extract Chromedriver into virtenv/bin,

Done.

ISSUE FOUND:

Location: 6.3 Where: Refactoring check_for_row_in_list_table() What: Why use return instead of break?