diff options
Diffstat (limited to 'test/tables.py')
-rw-r--r-- | test/tables.py | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/test/tables.py b/test/tables.py index 97363aa92..fa3c9150a 100644 --- a/test/tables.py +++ b/test/tables.py @@ -1,12 +1,11 @@ -from sqlalchemy.sql import * -from sqlalchemy.schema import * -from sqlalchemy.mapper import * -import sqlalchemy +from sqlalchemy import * import os import testbase -__ALL__ = ['db', 'users', 'addresses', 'orders', 'orderitems', 'keywords', 'itemkeywords'] +__all__ = ['db', 'users', 'addresses', 'orders', 'orderitems', 'keywords', 'itemkeywords', + 'User', 'Address', 'Order', 'Item', 'Keyword' + ] ECHO = testbase.echo db = testbase.db |