本文整理汇总了Python中tornado.options.options.mockable方法的典型用法代码示例。如果您正苦于以下问题:Python options.mockable方法的具体用法?Python options.mockable怎么用?Python options.mockable使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类tornado.options.options
的用法示例。
在下文中一共展示了options.mockable方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: mockable
# 需要导入模块: from tornado.options import options [as 别名]
# 或者: from tornado.options.options import mockable [as 别名]
def mockable(self):
"""Returns a wrapper around self that is compatible with
`mock.patch <unittest.mock.patch>`.
The `mock.patch <unittest.mock.patch>` function (included in
the standard library `unittest.mock` package since Python 3.3,
or in the third-party ``mock`` package for older versions of
Python) is incompatible with objects like ``options`` that
override ``__getattr__`` and ``__setattr__``. This function
returns an object that can be used with `mock.patch.object
<unittest.mock.patch.object>` to modify option values::
with mock.patch.object(options.mockable(), 'name', value):
assert options.name == value
"""
return _Mockable(self)
示例2: mockable
# 需要导入模块: from tornado.options import options [as 别名]
# 或者: from tornado.options.options import mockable [as 别名]
def mockable(self) -> "_Mockable":
"""Returns a wrapper around self that is compatible with
`mock.patch <unittest.mock.patch>`.
The `mock.patch <unittest.mock.patch>` function (included in
the standard library `unittest.mock` package since Python 3.3,
or in the third-party ``mock`` package for older versions of
Python) is incompatible with objects like ``options`` that
override ``__getattr__`` and ``__setattr__``. This function
returns an object that can be used with `mock.patch.object
<unittest.mock.patch.object>` to modify option values::
with mock.patch.object(options.mockable(), 'name', value):
assert options.name == value
"""
return _Mockable(self)
示例3: __setattr__
# 需要导入模块: from tornado.options import options [as 别名]
# 或者: from tornado.options.options import mockable [as 别名]
def __setattr__(self, name, value):
assert name not in self._originals, "don't reuse mockable objects"
self._originals[name] = getattr(self._options, name)
setattr(self._options, name, value)
示例4: __setattr__
# 需要导入模块: from tornado.options import options [as 别名]
# 或者: from tornado.options.options import mockable [as 别名]
def __setattr__(self, name: str, value: Any) -> None:
assert name not in self._originals, "don't reuse mockable objects"
self._originals[name] = getattr(self._options, name)
setattr(self._options, name, value)
示例5: mock_option
# 需要导入模块: from tornado.options import options [as 别名]
# 或者: from tornado.options.options import mockable [as 别名]
def mock_option(self, name, value):
return mock.patch.object(options.mockable(), name, value)