summaryrefslogtreecommitdiff
path: root/test/sql/test_labels.py
Commit message (Collapse)AuthorAgeFilesLines
* - test failures. one in particular seems to be a weird oursql bug, oh wellMike Bayer2012-02-121-2/+5
|
* - [bug] A significant change to how labelingMike Bayer2012-02-051-98/+285
| | | | | | | | | | | | | | is applied to columns in SELECT statements allows "truncated" labels, that is label names that are generated in Python which exceed the maximum identifier length (note this is configurable via label_length on create_engine()), to be properly referenced when rendered inside of a subquery, as well as to be present in a result set row using their original in-Python names. [ticket:2396] - apply pep8 to test_labels
* - remove test.sql._base, test.engine._base, test.orm._base, move those ↵Mike Bayer2011-03-271-2/+2
| | | | | | | classes to a new test.lib.fixtures module - move testing.TestBase to test.lib.fixtures - massive search and replace
* - whitespace removal bonanzaMike Bayer2011-01-021-9/+9
|
* - move sqlalchemy.test to test.libMike Bayer2010-11-151-2/+2
|
* - normalize sybase version numbersMike Bayer2010-03-181-9/+12
| | | | - sybase has 255 identifier length on 15, 30 earlier
* merge 0.6 series to trunk.Mike Bayer2009-08-061-4/+11
|
* - unit tests have been migrated from unittest to nose.Mike Bayer2009-06-101-0/+195
See README.unittests for information on how to run the tests. [ticket:970]