From: Mike Bayer Date: Fri, 16 Sep 2005 08:13:41 +0000 (+0000) Subject: (no commit message) X-Git-Tag: rel_0_1_0~716 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3ab0683072b9a9504fe61b34bff3d896d6634e26;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git --- diff --git a/test/mapper.py b/test/mapper.py index 1ea8d33396..c7edd70fbc 100644 --- a/test/mapper.py +++ b/test/mapper.py @@ -456,7 +456,7 @@ class SaveTest(AssertMixin): self.assert_(addresstable[0].row == (addressid, userid, 'somethingnew@foo.com')) self.assert_(u.user_id == userid and a2.address_id == addressid) - def testalias(self): + def _testalias(self): """tests that an alias of a table can be used in a mapper. the mapper has to locate the original table and columns to keep it all straight.""" ualias = Alias(users, 'ualias') @@ -468,7 +468,7 @@ class SaveTest(AssertMixin): u2 = m.select(ualias.c.user_id == u.user_id)[0] self.assert_(u2 is u) - def testremove(self): + def _testremove(self): m = mapper(User, users, properties = dict( addresses = relation(Address, addresses, lazy = True) ))