summaryrefslogtreecommitdiff
path: root/test/sql
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2006-06-29 00:28:55 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2006-06-29 00:28:55 +0000
commitb3927fbb88c7988ec0397241ff40ecd72d1727bf (patch)
tree278f0a745e47570cb141f4fd4eb3319190be8296 /test/sql
parent2fb9221b797e5a29e34096c09d97615d859e95d1 (diff)
downloadsqlalchemy-b3927fbb88c7988ec0397241ff40ecd72d1727bf.tar.gz
inserting './lib/' into sys.path since PYTHONPATH no longer straightforward with latest setuptools
Diffstat (limited to 'test/sql')
-rw-r--r--test/sql/indexes.py2
-rw-r--r--test/sql/select.py5
-rw-r--r--test/sql/testtypes.py4
3 files changed, 5 insertions, 6 deletions
diff --git a/test/sql/indexes.py b/test/sql/indexes.py
index f1e55e406..ec72beda3 100644
--- a/test/sql/indexes.py
+++ b/test/sql/indexes.py
@@ -1,6 +1,6 @@
+import testbase
from sqlalchemy import *
import sys
-import testbase
class IndexTest(testbase.AssertMixin):
diff --git a/test/sql/select.py b/test/sql/select.py
index d78f36b1a..57b123fc2 100644
--- a/test/sql/select.py
+++ b/test/sql/select.py
@@ -1,9 +1,8 @@
-
+from testbase import PersistTest
+import testbase
from sqlalchemy import *
from sqlalchemy.databases import sqlite, postgres, mysql, oracle
-from testbase import PersistTest
import unittest, re
-import testbase
# the select test now tests almost completely with TableClause/ColumnClause objects,
# which are free-roaming table/column objects not attached to any database.
diff --git a/test/sql/testtypes.py b/test/sql/testtypes.py
index 2ec1fe795..71c98f105 100644
--- a/test/sql/testtypes.py
+++ b/test/sql/testtypes.py
@@ -1,7 +1,7 @@
-from sqlalchemy import *
-import string,datetime, re, sys
from testbase import PersistTest, AssertMixin
import testbase
+from sqlalchemy import *
+import string,datetime, re, sys
import sqlalchemy.engine.url as url
import sqlalchemy.types