summaryrefslogtreecommitdiff
path: root/test/engine/parseconnect.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/engine/parseconnect.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/engine/parseconnect.py')
-rw-r--r--test/engine/parseconnect.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/engine/parseconnect.py b/test/engine/parseconnect.py
index df7ab711b..117c3ed4b 100644
--- a/test/engine/parseconnect.py
+++ b/test/engine/parseconnect.py
@@ -6,7 +6,7 @@ import sqlalchemy.engine.url as url
from testlib import *
-class ParseConnectTest(PersistTest):
+class ParseConnectTest(TestBase):
def test_rfc1738(self):
for text in (
'dbtype://username:password@hostspec:110//usr/db_file.db',
@@ -37,7 +37,7 @@ class ParseConnectTest(PersistTest):
assert u.host == 'hostspec' or u.host == '127.0.0.1' or (not u.host)
assert str(u) == text
-class CreateEngineTest(PersistTest):
+class CreateEngineTest(TestBase):
"""test that create_engine arguments of different types get propigated properly"""
def test_connect_query(self):
dbapi = MockDBAPI(foober='12', lala='18', fooz='somevalue')