本文整理汇总了Python中gstswitch.server.Server.log_to_file方法的典型用法代码示例。如果您正苦于以下问题:Python Server.log_to_file方法的具体用法?Python Server.log_to_file怎么用?Python Server.log_to_file使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类gstswitch.server.Server
的用法示例。
在下文中一共展示了Server.log_to_file方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_log_to_stderr
# 需要导入模块: from gstswitch.server import Server [as 别名]
# 或者: from gstswitch.server.Server import log_to_file [as 别名]
def test_log_to_stderr(self):
"""Test log_to_file=False property"""
with patch("gstswitch.server.ProcessMonitor") as mock:
serv = Server(path="abc")
serv.log_to_file = False
serv._start_process("cmd")
mock.assert_called_with("cmd")
示例2: test_log_to_file
# 需要导入模块: from gstswitch.server import Server [as 别名]
# 或者: from gstswitch.server.Server import log_to_file [as 别名]
def test_log_to_file(self):
"""Test log_to_file=True property"""
with patch("gstswitch.server.open", create=True) as mock_open:
mock_open.return_value = 123
with patch("gstswitch.server.ProcessMonitor") as mock:
serv = Server(path="abc")
serv.log_to_file = True
serv._start_process("cmd")
mock.assert_called_with("cmd", 123)