[doc] try this mock magic thingy for ldap

This commit is contained in:
Laurent Peuch 2017-08-12 17:18:56 +02:00
parent bc1226cb3c
commit 5b4efe8efb

View file

@ -21,6 +21,18 @@ import sys
sys.path.insert(0, os.path.abspath('..'))
import sys
from mock import Mock as MagicMock
class Mock(MagicMock):
@classmethod
def __getattr__(cls, name):
return MagicMock()
MOCK_MODULES = ['ldap']
sys.modules.update((mod_name, Mock()) for mod_name in MOCK_MODULES)
# -- General configuration ------------------------------------------------
# If your documentation needs a minimal Sphinx version, state it here.