summaryrefslogtreecommitdiff
path: root/test/perf
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2008-02-11 00:28:39 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2008-02-11 00:28:39 +0000
commitc0b5a0446bf63bdac664421f49742f1156c1911a (patch)
tree9d7822f91325d23e512e77701c9f1280d968ea20 /test/perf
parent90c572b513fb33cb5cd17134efb6018abc76bb1f (diff)
downloadsqlalchemy-c0b5a0446bf63bdac664421f49742f1156c1911a.tar.gz
- updated the naming scheme of the base test classes in test/testlib/testing.py;
tests extend from either TestBase or ORMTest, using additional mixins for special assertion methods as needed
Diffstat (limited to 'test/perf')
-rw-r--r--test/perf/massload.py2
-rw-r--r--test/perf/masssave.py2
-rw-r--r--test/perf/sessions.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/test/perf/massload.py b/test/perf/massload.py
index 6fdda3f4d..834333083 100644
--- a/test/perf/massload.py
+++ b/test/perf/massload.py
@@ -17,7 +17,7 @@ top while it runs
NUM = 2500
-class LoadTest(AssertMixin):
+class LoadTest(TestBase, AssertsExecutionResults):
def setUpAll(self):
global items, meta
meta = MetaData(testing.db)
diff --git a/test/perf/masssave.py b/test/perf/masssave.py
index c0d041a41..bf65c8fdf 100644
--- a/test/perf/masssave.py
+++ b/test/perf/masssave.py
@@ -7,7 +7,7 @@ from testlib import *
NUM = 2500
-class SaveTest(AssertMixin):
+class SaveTest(TestBase, AssertsExecutionResults):
def setUpAll(self):
global items, metadata
metadata = MetaData(testing.db)
diff --git a/test/perf/sessions.py b/test/perf/sessions.py
index 0a050358a..c5f768653 100644
--- a/test/perf/sessions.py
+++ b/test/perf/sessions.py
@@ -9,7 +9,7 @@ import gc
ITERATIONS = 100
-class SessionTest(AssertMixin):
+class SessionTest(TestBase, AssertsExecutionResults):
def setUpAll(self):
global t1, t2, metadata,T1, T2
metadata = MetaData(testing.db)