- Not just for Test Driven Development
- Test bug fixes
- Re-factoring insurance
- Hard to get manager buy-in b/c it takes longer usually up-front
- Release early, find bugs, write tests, repeat
- Improves documentation of bug fix
- Answer 5 Ws
- Future-proof code against duplicate bugs
- Old bugs have tendency to come back
- 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
- Hard to run
- Not usually located close to real code
- Some environments hard to duplicate
- False positives
- Doctests are nice b/c they are right there with code but can be ugly
- Problems for documentation generators like sphinx?
- Pytest
- Nose
- doctests
- Travis CI
- Tools to help mitigate the hard to run aspect of tests