本文整理汇总了Python中unittest.mock._mock_name方法的典型用法代码示例。如果您正苦于以下问题:Python mock._mock_name方法的具体用法?Python mock._mock_name怎么用?Python mock._mock_name使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类unittest.mock
的用法示例。
在下文中一共展示了mock._mock_name方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_reset_mock
# 需要导入模块: from unittest import mock [as 别名]
# 或者: from unittest.mock import _mock_name [as 别名]
def test_reset_mock(self):
parent = Mock()
spec = ["something"]
mock = Mock(name="child", parent=parent, spec=spec)
mock(sentinel.Something, something=sentinel.SomethingElse)
something = mock.something
mock.something()
mock.side_effect = sentinel.SideEffect
return_value = mock.return_value
return_value()
mock.reset_mock()
self.assertEqual(mock._mock_name, "child",
"name incorrectly reset")
self.assertEqual(mock._mock_parent, parent,
"parent incorrectly reset")
self.assertEqual(mock._mock_methods, spec,
"methods incorrectly reset")
self.assertFalse(mock.called, "called not reset")
self.assertEqual(mock.call_count, 0, "call_count not reset")
self.assertEqual(mock.call_args, None, "call_args not reset")
self.assertEqual(mock.call_args_list, [], "call_args_list not reset")
self.assertEqual(mock.method_calls, [],
"method_calls not initialised correctly: %r != %r" %
(mock.method_calls, []))
self.assertEqual(mock.mock_calls, [])
self.assertEqual(mock.side_effect, sentinel.SideEffect,
"side_effect incorrectly reset")
self.assertEqual(mock.return_value, return_value,
"return_value incorrectly reset")
self.assertFalse(return_value.called, "return value mock not reset")
self.assertEqual(mock._mock_children, {'something': something},
"children reset incorrectly")
self.assertEqual(mock.something, something,
"children incorrectly cleared")
self.assertFalse(mock.something.called, "child not reset")
示例2: test_attributes_have_name_and_parent_set
# 需要导入模块: from unittest import mock [as 别名]
# 或者: from unittest.mock import _mock_name [as 别名]
def test_attributes_have_name_and_parent_set(self):
mock = Mock()
something = mock.something
self.assertEqual(something._mock_name, "something",
"attribute name not set correctly")
self.assertEqual(something._mock_parent, mock,
"attribute parent not set correctly")
示例3: assert_mock_called_once
# 需要导入模块: from unittest import mock [as 别名]
# 或者: from unittest.mock import _mock_name [as 别名]
def assert_mock_called_once(self, mock):
"""assert that the mock was called only once.
The `mock.assert_called_once()` method was added in PY36.
TODO: Remove this when PY35 support is dropped.
"""
try:
mock.assert_called_once()
except AttributeError:
if not mock.call_count == 1:
msg = ("Expected '%s' to have been called once. Called %s times." %
(mock._mock_name or 'mock', self.call_count))
raise AssertionError(msg)
# Test build.get_context
示例4: assert_mock_called_once
# 需要导入模块: from unittest import mock [as 别名]
# 或者: from unittest.mock import _mock_name [as 别名]
def assert_mock_called_once(self, mock):
"""assert that the mock was called only once.
The `mock.assert_called_once()` method was added in PY36.
TODO: Remove this when PY35 support is dropped.
"""
try:
mock.assert_called_once()
except AttributeError:
if not mock.call_count == 1:
msg = ("Expected '%s' to have been called once. Called %s times." %
(mock._mock_name or 'mock', self.call_count))
raise AssertionError(msg)