summaryrefslogtreecommitdiff
path: root/test/sql/constraints.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2008-02-11 00:28:39 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2008-02-11 00:28:39 +0000
commitc0b5a0446bf63bdac664421f49742f1156c1911a (patch)
tree9d7822f91325d23e512e77701c9f1280d968ea20 /test/sql/constraints.py
parent90c572b513fb33cb5cd17134efb6018abc76bb1f (diff)
downloadsqlalchemy-c0b5a0446bf63bdac664421f49742f1156c1911a.tar.gz
- updated the naming scheme of the base test classes in test/testlib/testing.py;
tests extend from either TestBase or ORMTest, using additional mixins for special assertion methods as needed
Diffstat (limited to 'test/sql/constraints.py')
-rw-r--r--test/sql/constraints.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/sql/constraints.py b/test/sql/constraints.py
index 29fffa751..2908e07da 100644
--- a/test/sql/constraints.py
+++ b/test/sql/constraints.py
@@ -4,7 +4,7 @@ from sqlalchemy import exceptions
from testlib import *
from testlib import config, engines
-class ConstraintTest(AssertMixin):
+class ConstraintTest(TestBase, AssertsExecutionResults):
def setUp(self):
global metadata
@@ -202,7 +202,7 @@ class ConstraintTest(AssertMixin):
ss = events.select().execute().fetchall()
-class ConstraintCompilationTest(AssertMixin):
+class ConstraintCompilationTest(TestBase, AssertsExecutionResults):
class accum(object):
def __init__(self):
self.statements = []