Sometimes, code I write initially is very much part of the discovery process. Initial attempts will be scrapped and refactored aggressively until I begin to settle on the overall structure and design of the application. At this point I will begin retroactively writing tests for existing code and switching to a more test-driven design approach for new code.
Unfortunately, I've been bitten a few times when using python's mock library by misunderstanding of the pitfalls around autospec defaulting to false, as