mirror of
https://github.com/janeczku/calibre-web
synced 2025-12-15 04:08:04 +00:00
Initial Fork from https://bitbucket.org/raphaelmutschler/calibreserver/
This commit is contained in:
15
lib/sqlalchemy/testing/mock.py
Normal file
15
lib/sqlalchemy/testing/mock.py
Normal file
@@ -0,0 +1,15 @@
|
||||
"""Import stub for mock library.
|
||||
"""
|
||||
from __future__ import absolute_import
|
||||
from ..util import py33
|
||||
|
||||
if py33:
|
||||
from unittest.mock import MagicMock, Mock, call
|
||||
else:
|
||||
try:
|
||||
from mock import MagicMock, Mock, call
|
||||
except ImportError:
|
||||
raise ImportError(
|
||||
"SQLAlchemy's test suite requires the "
|
||||
"'mock' library as of 0.8.2.")
|
||||
|
||||
Reference in New Issue
Block a user