Skip to content

Latest commit

 

History

History
55 lines (37 loc) · 1.31 KB

unit_tests.md

File metadata and controls

55 lines (37 loc) · 1.31 KB

Unit tests

  • Not just for Test Driven Development
  • Test bug fixes
  • Re-factoring insurance

Presenter notes

  • Hard to get manager buy-in b/c it takes longer usually up-front
  • Release early, find bugs, write tests, repeat

Unit test benefits

Presenter notes

  • Think executable documentation!
  • Document how you tested it, what the bug scenario was
  • Good unit test is best doc for weird bug fix
    • test will include comments, data to re-create bug, steps for scenario
  • Refactoring has a tendency to allow old bugs to creep in

Unit test downsides

  • Hard to run
  • Not usually located close to real code
  • Some environments hard to duplicate
  • False positives

Presenter notes

  • Doctests are nice b/c they are right there with code but can be ugly
    • Problems for documentation generators like sphinx?

Unit test tools

  • Pytest
  • Nose
  • doctests
  • Travis CI

Presenter notes

  • Tools to help mitigate the hard to run aspect of tests