You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ORPA-pyOpenRPA/Resources/WPy64-3720/python-3.7.2.amd64/Lib/site-packages/jupyter_core/tests/mocking.py

41 lines
840 B

"""General mocking utilities"""
# Copyright (c) Jupyter Development Team.
# Distributed under the terms of the Modified BSD License.
import os
import sys
try:
from unittest.mock import patch
except ImportError:
from mock import patch # py2
class MultiPatch(object):
def __init__(self, *patchers):
self.patchers = patchers
def __enter__(self):
for p in self.patchers:
p.start()
def __exit__(self, *args):
for p in self.patchers:
p.stop()
darwin = MultiPatch(
patch.object(os, 'name', 'posix'),
patch.object(sys, 'platform', 'darwin'),
)
linux = MultiPatch(
patch.object(os, 'name', 'posix'),
patch.object(sys, 'platform', 'linux2'),
)
windows = MultiPatch(
patch.object(os, 'name', 'nt'),
patch.object(sys, 'platform', 'win32'),
)