summaryrefslogtreecommitdiff
path: root/test/dialect/alltests.py
Commit message (Collapse)AuthorAgeFilesLines
* - unit tests have been migrated from unittest to nose.Mike Bayer2009-06-101-28/+0
| | | | | See README.unittests for information on how to run the tests. [ticket:970]
* merge the test/ directory from -r5438:5439 of py3k_warnings branch. this givesMike Bayer2008-12-181-1/+1
| | | | us a 2.5-frozen copy of unittest so we're insulated from unittest changes.
* - testbase is gone, replaced by testenvJason Kirtland2008-01-121-3/+5
| | | | | | - Importing testenv has no side effects- explicit functions provide similar behavior to the old immediate behavior of testbase - testing.db has the configured db - Fixed up the perf/* scripts
* - sqlite housekeeping- added dialect test & moved tests there, pruned the ↵Jason Kirtland2007-10-111-5/+6
| | | | dialect's reserved words.
* added stub/import tests for all dialectsJason Kirtland2007-08-211-0/+3
| | | | post-refactor fix for access dialect
* - fixed compiler bug in mssqlMike Bayer2007-08-121-0/+1
| | | | | | - marked as unsupported for mssql all two-phase and nested transcation tests - marked as unsupported for mssql various transactional/session tests which require two connections looking at uncommitted/external data at the same time (ms-sql cant handle it) - put better explicit closeout step in unitofwork.py tests to appease ms-sqls hard locking
* merging 0.4 branch to trunk. see CHANGES for details. 0.3 moves to ↵Mike Bayer2007-07-271-0/+1
| | | | maintenance branch in branches/rel_0_3.
* postgres:Mike Bayer2007-06-291-0/+1
| | | | | | | | - added support for reflection of domains [ticket:570] - types which are missing during reflection resolve to Null type instead of raising an error - moved reflection/types/query unit tests specific to postgres to new postgres unittest module
* - MySQL ENUM types can now optionally ensure that values are within theJason Kirtland2007-05-021-0/+19
enum's allowed range on insert and update, with strict=True - Added new 'dialect' category of unit tests, and migrated MySQL-specific dialect tests there. - Noted the max identifier length in the MySQL dialect (the max alias length, actually)