diff options
Diffstat (limited to 'test/base/test_examples.py')
-rw-r--r-- | test/base/test_examples.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/test/base/test_examples.py b/test/base/test_examples.py new file mode 100644 index 000000000..50f0c01f2 --- /dev/null +++ b/test/base/test_examples.py @@ -0,0 +1,23 @@ +import os +import sys + +from sqlalchemy.testing import fixtures + + +here = os.path.dirname(__file__) +sqla_base = os.path.normpath(os.path.join(here, "..", "..")) + + +sys.path.insert(0, sqla_base) + +test_versioning = __import__( + "examples.versioned_history.test_versioning" +).versioned_history.test_versioning + + +class VersionedRowsTest( + test_versioning.TestVersioning, + fixtures.RemoveORMEventsGlobally, + fixtures.TestBase, +): + pass |