diff options
Diffstat (limited to 'test/inheritance.py')
-rw-r--r-- | test/inheritance.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/inheritance.py b/test/inheritance.py index 947844161..8b683b8ff 100644 --- a/test/inheritance.py +++ b/test/inheritance.py @@ -384,7 +384,9 @@ class InheritTest5(testbase.AssertMixin): # shouldnt throw exception products = mapper(Product, product, inherits=contents) + def testbackref(self): + """this test is currently known to fail in the 0.1 series of SQLAlchemy, pending the resolution of [ticket:154]""" class ContentType(object): pass class Content(object): pass class Product(Content): pass |