mirror of
https://github.com/YunoHost/moulinette.git
synced 2024-09-03 20:06:31 +02:00
[doc] try this mock magic thingy for ldap
This commit is contained in:
parent
bc1226cb3c
commit
5b4efe8efb
1 changed files with 12 additions and 0 deletions
12
doc/conf.py
12
doc/conf.py
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue