summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authormike bayer <mike_mp@zzzcomputing.com>2023-03-27 23:33:02 +0000
committerGerrit Code Review <gerrit@bbpush.zzzcomputing.com>2023-03-27 23:33:02 +0000
commite3a225aedbbb058122ecca466935b87405cf0132 (patch)
treea8f3d0f4cc8e4afb0b618bdde1b6d42cde7dd7d1 /test
parent348d76072c108e996baf59900fc45468f48c4cce (diff)
parent24dd3d8c90876a05377d04910819dcd5d25aed4e (diff)
downloadsqlalchemy-e3a225aedbbb058122ecca466935b87405cf0132.tar.gz
Merge "support DeclarativeBase for versioned history example" into main
Diffstat (limited to 'test')
-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