From e3dbb87d94e9caaec66bb141852fcd53caec3dea Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Sat, 26 Mar 2011 20:44:47 -0400 Subject: - move _fixtures to work via the normal methods of _base.MappedTest, convert all referncing tests to not use globals - tests that deal with pickle specifically load the fixture classes from test.lib.pickleable, which gets some more classes added - removed weird sa05 pickling tests that don't matter --- test/perf/sessions.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/perf') diff --git a/test/perf/sessions.py b/test/perf/sessions.py index c1258e732..3384736a1 100644 --- a/test/perf/sessions.py +++ b/test/perf/sessions.py @@ -36,9 +36,9 @@ class SessionTest(TestBase, AssertsExecutionResults): l.append({'c2':'this is t2 #%d' % y, 't1id':x}) t2.insert().execute(*l) - class T1(_fixtures.Base): + class T1(_base.ComparableEntity): pass - class T2(_fixtures.Base): + class T2(_base.ComparableEntity): pass mapper(T1, t1, properties={ -- cgit v1.2.1