18 lines
413 B
Python
Raw Normal View History

2021-01-02 23:12:27 -06:00
# engine/strategies.py
2021-03-27 16:21:31 -05:00
# Copyright (C) 2005-2021 the SQLAlchemy authors and contributors
2021-01-02 23:12:27 -06:00
# <see AUTHORS file>
#
# This module is part of SQLAlchemy and is released under
# the MIT License: http://www.opensource.org/licenses/mit-license.php
2021-03-27 16:21:31 -05:00
"""Deprecated mock engine strategy used by Alembic.
2021-01-02 23:12:27 -06:00
"""
2021-03-27 16:21:31 -05:00
from .mock import MockConnection # noqa
2021-01-02 23:12:27 -06:00
2021-03-27 16:21:31 -05:00
class MockEngineStrategy(object):
MockConnection = MockConnection