mirror of
https://github.com/sqlalchemy/sqlalchemy.git
synced 2026-06-22 08:31:58 -04:00
1e1c0084b1
Closes: #13280 Change-Id: Ifbb77dd6d2a1c228ae97fcf8160f40e975edc57c
40 lines
798 B
Python
40 lines
798 B
Python
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 VersionedRowsTestLegacyBase(
|
|
test_versioning.TestVersioning,
|
|
fixtures.RemoveORMEventsGlobally,
|
|
fixtures.TestBase,
|
|
):
|
|
pass
|
|
|
|
|
|
class VersionedRowsTestNewBase(
|
|
test_versioning.TestVersioningNewBase,
|
|
fixtures.RemoveORMEventsGlobally,
|
|
fixtures.TestBase,
|
|
):
|
|
pass
|
|
|
|
|
|
test_qualify = __import__(
|
|
"examples.syntax_extensions.test_qualify"
|
|
).syntax_extensions.test_qualify
|
|
|
|
|
|
class QualifyCompileTest(test_qualify.QualifyCompileTest, fixtures.TestBase):
|
|
pass
|