Welcome to Brannon's Reading Notes!

This serves as my personal page to keep and update my reading notes for Code Fellows Courses 201, 301, and 401.

Reading 2

Test-Driven Development

Write tests first! Then do the code!

  1. Test names should be specific, ie should return female when name is from female
  2. Test file and module should follow naming conventions ie module.py and test_module.py
  3. AAA! Arrange Act and Assert

The Cycle

  1. Write the test and make it fail. (There’s nothing to test yet!)
  2. Write the feature and make it pass.
  3. Refactor to make it nice.

What’s up with name == main ?

Recursive Functions

First off: the reading 🤮 , the video: 💯