本文整理汇总了Python中mock.PropertyMock.log_file方法的典型用法代码示例。如果您正苦于以下问题:Python PropertyMock.log_file方法的具体用法?Python PropertyMock.log_file怎么用?Python PropertyMock.log_file使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类mock.PropertyMock
的用法示例。
在下文中一共展示了PropertyMock.log_file方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_should_initialize_logging_with_current_configuration
# 需要导入模块: from mock import PropertyMock [as 别名]
# 或者: from mock.PropertyMock import log_file [as 别名]
def test_should_initialize_logging_with_current_configuration(self, mock_config, mock_initialize_logging):
config_properties = PropertyMock()
config_properties.log_file = '/foo/bar/baz.log'
mock_config.return_value = config_properties
livestatus_service.initialize('/foo/bar/config.cfg')
self.assertEqual(
mock_initialize_logging.call_args, call(config_properties.log_file))