diff options
author | Jason Kirtland <jek@discorporate.us> | 2007-08-01 07:18:50 +0000 |
---|---|---|
committer | Jason Kirtland <jek@discorporate.us> | 2007-08-01 07:18:50 +0000 |
commit | 18dab5baf0bed47eeeaab6ada389f7c71434ef78 (patch) | |
tree | 0044ef23b33f0014166c56d6842ea5d2d960b6e5 /test/orm/generative.py | |
parent | a52e5a772bfc93f5b04206705789b0ac53f2b18f (diff) | |
download | sqlalchemy-18dab5baf0bed47eeeaab6ada389f7c71434ef78.tar.gz |
Added EXT_CONTINUE and EXT_STOP for MapperExtensions; EXT_PASS is a synonym for EXT_CONTINUE.
Repointed docs and examples to EXT_CONTINUE
Diffstat (limited to 'test/orm/generative.py')
-rw-r--r-- | test/orm/generative.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/orm/generative.py b/test/orm/generative.py index 4a90c13cb..c850069ab 100644 --- a/test/orm/generative.py +++ b/test/orm/generative.py @@ -103,7 +103,7 @@ class GenerativeQueryTest(PersistTest): class ext1(MapperExtension): def populate_instance(self, mapper, selectcontext, row, instance, **flags): instance.TEST = "hello world" - return EXT_PASS + return EXT_CONTINUE assert query.options(extension(ext1()))[0].TEST == "hello world" def test_order_by(self): |