33 lines
893 B
Python
Raw Normal View History

2021-01-02 23:12:27 -06:00
# testing/mock.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
"""Import stub for mock library.
"""
from __future__ import absolute_import
2021-03-27 16:21:31 -05:00
from ..util import py3k
2021-01-02 23:12:27 -06:00
2021-03-27 16:21:31 -05:00
if py3k:
2021-01-02 23:12:27 -06:00
from unittest.mock import MagicMock
from unittest.mock import Mock
from unittest.mock import call
from unittest.mock import patch
from unittest.mock import ANY
else:
try:
from mock import MagicMock # noqa
from mock import Mock # noqa
from mock import call # noqa
from mock import patch # noqa
from mock import ANY # noqa
except ImportError:
raise ImportError(
"SQLAlchemy's test suite requires the "
"'mock' library as of 0.8.2."
)