1
0
mirror of https://github.com/janeczku/calibre-web synced 2025-12-15 04:08:04 +00:00
This commit is contained in:
Jan Broer
2015-08-02 20:59:11 +02:00
commit 64a9cbce2d
743 changed files with 233749 additions and 0 deletions

View 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.")