diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2011-03-26 20:44:47 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2011-03-26 20:44:47 -0400 |
| commit | e3dbb87d94e9caaec66bb141852fcd53caec3dea (patch) | |
| tree | 46d9f6d4da068801a1cbe9e6a8cddc2d065b13e9 /test/perf | |
| parent | 0a695bb004a12a03c7493d647fed9ebdadca5fa0 (diff) | |
| download | sqlalchemy-e3dbb87d94e9caaec66bb141852fcd53caec3dea.tar.gz | |
- 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
Diffstat (limited to 'test/perf')
| -rw-r--r-- | test/perf/sessions.py | 4 |
1 files changed, 2 insertions, 2 deletions
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={ |
