summaryrefslogtreecommitdiff
path: root/test/ext/orderinglist.py
Commit message (Collapse)AuthorAgeFilesLines
* - unit tests have been migrated from unittest to nose.Mike Bayer2009-06-101-403/+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-11/+11
| | | | | | Session methods have been deprecated, replaced by "expunge_all()" and "add()". "expunge_all()" has also been added to ScopedSession.
* - Oops, convert @decorator to 2.3 syntax and strengthen raw_append test.Jason Kirtland2008-06-191-2/+11
|
* - Fixed ORM orphaning bug with _raw_append methodJason Kirtland2008-05-211-2/+8
| | | | | | - Promoted _reorder to reorder - Now horking docstrings of overloaded methods from list - Added a doctest
* Tag PKs with `test_needs_autoincrement` on a few testLele Gaifax2008-05-131-2/+4
|
* - updated the naming scheme of the base test classes in test/testlib/testing.py;Mike Bayer2008-02-111-1/+1
| | | | | tests extend from either TestBase or ORMTest, using additional mixins for special assertion methods as needed
* - testbase is gone, replaced by testenvJason Kirtland2008-01-121-14/+15
| | | | | | - 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
* Added explicit length to more testing String columns.Jason Kirtland2008-01-091-2/+2
|
* merging 0.4 branch to trunk. see CHANGES for details. 0.3 moves to ↵Mike Bayer2007-07-271-43/+6
| | | | maintenance branch in branches/rel_0_3.
* - Deprecated DynamicMetaData- use ThreadLocalMetaData or MetaData insteadJason Kirtland2007-07-061-1/+1
| | | | | - Deprecated BoundMetaData- use MetaData instead - Removed DMD and BMD from documentation
* - added sqlalchemy.ext.orderinglist, a custom list class that synchronizes ↵Jason Kirtland2007-05-021-0/+422
an object attribute with that object's position in the list