Christopher Roach
Christopher Roach
In the latest update to Django (v1.5) a change was made to make the processing of data sent via an HTTP POST more strict. A full explanation of the change...
Replace the current way of creating custom loaders with a setuptools-based plugin architecture. See the links below for details on how to create a plugin architecture using pgk_resources: - [Pylons...
In several situations, the developer has added constants to their code that the test test writer would like to reference in the tests. Doing so allows tests to remain unchanged...
The py.test and nose libraries support standalone test functions (the unittest standard library does not). I'd like to add support for these standalone functions to the Flask-Fixtures library. If we...
The idea here is that, instead of creating two separate fixture objects, when one is a child of the other, it would be nice if we could nest them. For...
If you use fixtures with a class that does it's own setup and teardown any tables that were already created stick around and that means that any data within them...
Right now we check the current directory for fixtures only if none are passed into the decorator, but there's no reason we shouldn't check the current directory at all times.
The idea here is to allow a developer to add multiple fixture sets within a single file and have only a specific set loaded for a test. You could do...