Archive for the ‘links’ Category

Eradicating Non-Determinism in Tests

Linked on Apr 14 at 21:06

I hate non-deterministic tests, which is why I strive for a completely fresh testing environment for each and every test. In-memory databases make this much easier (and faster). Python makes it easy to construct file-like objects for tests instead of relying on files on a filesystem. When testing an application which must hit the filesystem, … Read more