LAB - Class 01

Author: Matthew Rangel

Links and Resources

  • Roger Wells
  • Benjamin Carter
  • Thomas Basham
  • Nicholas Mercado
  • Morning Lecture
  • geeksforgeeks

band_review.py

  • Morning after Review

How do you run tests?

  1. Created test and ran pytest
  2. Imported formula from series module to test_series module
  3. Run pytest
  4. Fleshed out formula in series module
  5. Run pytest
    • If failed, tweak check for error and refactor accordingly
      • GOOGLE, PEER, TA
    • If Pass, proceed to next formula.

The last two tests were the most challenging. Before that, the tests seemed to be pretty helpful into what to do next, barring the __repr__ wrapper. Had to google that, but don't know exactly why that's needed.