diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2005-09-24 06:03:04 +0000 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2005-09-24 06:03:04 +0000 |
commit | 0f33e21e094a15847c7d659da619dd550e7d0551 (patch) | |
tree | 9511fb2e4a78a5ba1ea51b1f7ba45ffa6fd46aa0 /test/tables.py | |
parent | c9011afab952f8e72301a05a6c561c2241d6fc1d (diff) | |
download | sqlalchemy-0f33e21e094a15847c7d659da619dd550e7d0551.tar.gz |
Diffstat (limited to 'test/tables.py')
-rw-r--r-- | test/tables.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/tables.py b/test/tables.py index f10634697..6573d7b4e 100644 --- a/test/tables.py +++ b/test/tables.py @@ -3,6 +3,12 @@ from sqlalchemy.sql import * from sqlalchemy.schema import * from sqlalchemy.mapper import * import os +import testbase + +__ALL__ = ['db', 'users', 'addresses', 'orders', 'orderitems', 'keywords', 'itemkeywords'] + +ECHO = testbase.echo +DATA = True DBTYPE = 'sqlite_memory' @@ -150,3 +156,6 @@ class Keyword(object): def __repr__(self): return "Keyword: %s/%s" % (repr(getattr(self, 'keyword_id', None)),repr(self.name)) + + +#db.echo = True |