summaryrefslogtreecommitdiff
path: root/test/orm/selectable.py
Commit message (Collapse)AuthorAgeFilesLines
* - unit tests have been migrated from unittest to nose.Mike Bayer2009-06-101-52/+0
| | | | | See README.unittests for information on how to run the tests. [ticket:970]
* - The "clear()", "save()", "update()", "save_or_update()"Mike Bayer2009-01-171-1/+1
| | | | | | Session methods have been deprecated, replaced by "expunge_all()" and "add()". "expunge_all()" has also been added to ScopedSession.
* Test suite modernization in progress. Big changes:Jason Kirtland2008-05-091-34/+34
| | | | | | | | | | | - @unsupported now only accepts a single target and demands a reason for not running the test. - @exclude also demands an exclusion reason - Greatly expanded @testing.requires.<feature>, eliminating many decorators in the suite and signficantly easing integration of multi-driver support. - New ORM test base class, and a featureful base for mapped tests - Usage of 'global' for shared setup going away, * imports as well
* r4695 merged to trunk; trunk now becomes 0.5.Mike Bayer2008-05-091-2/+2
| | | | 0.4 development continues at /sqlalchemy/branches/rel_0_4
* - removed ancient assertion that mapped selectables requireMike Bayer2008-04-071-9/+11
| | | | | | | "alias names" - the mapper creates its own alias now if none is present. Though in this case you need to use the class, not the mapped selectable, as the source of column attributes - so a warning is still issued.
* - testbase is gone, replaced by testenvJason Kirtland2008-01-121-6/+6
| | | | | | - 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
* `from foo import (name, name)` isn't valid syntax for 2.3. ah well.Jason Kirtland2007-08-211-1/+2
| | | | omitting modules from sqlalchemy.__all__...
* - moved test/orm/fixtures.py to testlibMike Bayer2007-08-161-1/+1
| | | | | | | - flattened mapper calls in _instance() to operate directly through a default MapperExtension - more tests for ScopedSession, fixed [ticket:746] - threadlocal engine propagates **kwargs through begin()
* fixed glitch in Select visit traversal, fixes #693Mike Bayer2007-07-271-0/+49