summaryrefslogtreecommitdiff
path: root/test/orm/alltests.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2008-06-09 01:24:08 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2008-06-09 01:24:08 +0000
commit3cd10102e44db28d5fb787c7492e2ac2f7a4e4f9 (patch)
tree5a9c9893bc9b13f07a97dd18de7287854de07fc5 /test/orm/alltests.py
parentcde133c45d01848cd5696113fe94f269b7fe8d9c (diff)
downloadsqlalchemy-3cd10102e44db28d5fb787c7492e2ac2f7a4e4f9.tar.gz
- Query.UpdateDeleteTest.test_delete_fallback fails on mysql due to subquery in DELETE; not sure how to do this exact operation in MySQL
- added query_cls keyword argument to sessionmaker(); allows user-defined Query subclasses to be generated by query(). - added @attributes.on_reconstitute decorator, MapperExtension.on_reconstitute, both receieve 'on_load' attribute event allowing non-__init__ dependent instance initialization routines. - push memusage to the top to avoid pointless heisenbugs - renamed '_foostate'/'_fooclass_manager' to '_sa_instance_state'/'_sa_class_manager' - removed legacy instance ORM state accessors - query._get() will use _remove_newly_deleted instead of expunge() on ObjectDeleted, so that transaction rollback restores the previous state - removed MapperExtension.get(); replaced by a user-defined Query subclass - removed needless **kwargs from query.get() - removed Session.get(cls, id); this is redundant against Session.query(cls).get(id) - removed Query.load() and Session.load(); the use case for this method has never been clear, and the same functionality is available in more explicit ways
Diffstat (limited to 'test/orm/alltests.py')
-rw-r--r--test/orm/alltests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/orm/alltests.py b/test/orm/alltests.py
index 6d6db3a19..bce775f92 100644
--- a/test/orm/alltests.py
+++ b/test/orm/alltests.py
@@ -6,6 +6,7 @@ import sharding.alltests as sharding
def suite():
modules_to_test = (
+ 'orm.memusage',
'orm.attributes',
'orm.bind',
'orm.extendedattr',
@@ -31,7 +32,6 @@ def suite():
'orm.association',
'orm.merge',
'orm.pickled',
- 'orm.memusage',
'orm.utils',
'orm.cycles',