summaryrefslogtreecommitdiff
path: root/test/ext/declarative
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2012-08-29 16:25:20 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2012-08-29 16:25:20 -0400
commit561c71ff5540d92bd82c31f49848d75c77906356 (patch)
tree391d5763979b80ab5bfe906ce25a70c11d769538 /test/ext/declarative
parentf46f16d4c77252f06ae04891739f8d079ec8a0bd (diff)
downloadsqlalchemy-561c71ff5540d92bd82c31f49848d75c77906356.tar.gz
- skip this on oracle
Diffstat (limited to 'test/ext/declarative')
-rw-r--r--test/ext/declarative/test_inheritance.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/ext/declarative/test_inheritance.py b/test/ext/declarative/test_inheritance.py
index 7a2cb2def..86bd1c28e 100644
--- a/test/ext/declarative/test_inheritance.py
+++ b/test/ext/declarative/test_inheritance.py
@@ -478,6 +478,8 @@ class DeclarativeInheritanceTest(DeclarativeTestBase):
eq_(sess.query(Engineer).filter_by(primary_language='cobol'
).one(), Engineer(name='vlad', primary_language='cobol'))
+ @testing.skip_if(lambda: testing.against('oracle'),
+ "Test has an empty insert in it at the moment")
def test_columns_single_inheritance_conflict_resolution(self):
"""Test that a declared_attr can return the existing column and it will
be ignored. this allows conditional columns to be added.