From: Mike Bayer Date: Fri, 18 Nov 2005 04:40:06 +0000 (+0000) Subject: (no commit message) X-Git-Tag: rel_0_1_0~312 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=65d15d086344b08f057f369d39845227d1d72a90;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git --- diff --git a/test/objectstore.py b/test/objectstore.py index c02b9af3a4..362651b237 100644 --- a/test/objectstore.py +++ b/test/objectstore.py @@ -10,6 +10,15 @@ import tables class HistoryTest(AssertMixin): + def setUpAll(self): + db.echo = False + addresses.create() + db.echo = testbase.echo + def tearDownAll(self): + db.echo = False + addresses.drop() + db.echo = testbase.echo + def testattr(self): m = mapper(User, users, properties = dict(addresses = relation(Address, addresses))) u = User()