summaryrefslogtreecommitdiff
path: root/test/base/test_examples.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/base/test_examples.py')
-rw-r--r--test/base/test_examples.py10
1 files changed, 9 insertions, 1 deletions
diff --git a/test/base/test_examples.py b/test/base/test_examples.py
index 50f0c01f2..4baddfb10 100644
--- a/test/base/test_examples.py
+++ b/test/base/test_examples.py
@@ -15,9 +15,17 @@ test_versioning = __import__(
).versioned_history.test_versioning
-class VersionedRowsTest(
+class VersionedRowsTestLegacyBase(
test_versioning.TestVersioning,
fixtures.RemoveORMEventsGlobally,
fixtures.TestBase,
):
pass
+
+
+class VersionedRowsTestNewBase(
+ test_versioning.TestVersioningNewBase,
+ fixtures.RemoveORMEventsGlobally,
+ fixtures.TestBase,
+):
+ pass