summaryrefslogtreecommitdiff
path: root/test/engine/test_processors.py
Commit message (Collapse)AuthorAgeFilesLines
* - the raw 2to3 runMike Bayer2013-04-271-2/+2
| | | | - went through examples/ and cleaned out excess list() calls
* trying different approaches to test layout. in this one, the testing modulesMike Bayer2012-09-271-2/+2
| | | | | | | become an externally usable package but still remains within the main sqlalchemy parent package. in this system, we use kind of an ugly hack to get the noseplugin imported outside of the "sqlalchemy" package, while still making it available within sqlalchemy for usage by third party libraries.
* - add new C extension "utils", so far includes distill_paramsMike Bayer2012-08-071-9/+117
| | | | | - repair test_processors which wasn't hitting the python functions - add another suite to test_processors that does distill_params
* cleanup test_processors, modeling the PEP 399 stylePhilip Jenvey2012-03-071-72/+25
|
* - [bug] Improved error messages when a non-stringMike Bayer2012-01-221-0/+107
or invalid string is passed to any of the date/time processors used by SQLite, including C and Python versions. [ticket:2382] - changed the import model of processors.py so that we can get at the pure python versions and C versions simultaneously in tests.