本文整理汇总了Python中gstswitch.server.Server.gst_option_string方法的典型用法代码示例。如果您正苦于以下问题:Python Server.gst_option_string方法的具体用法?Python Server.gst_option_string怎么用?Python Server.gst_option_string使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类gstswitch.server.Server
的用法示例。
在下文中一共展示了Server.gst_option_string方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_run_process
# 需要导入模块: from gstswitch.server import Server [as 别名]
# 或者: from gstswitch.server.Server import gst_option_string [as 别名]
def test_run_process(self):
"""Test _run_process method"""
serv = Server(path='abc')
serv._start_process = Mock(return_value=MockProcess())
serv.gst_option_string = ''
ret = serv._run_process()
assert ret is not None
示例2: test_option_string
# 需要导入模块: from gstswitch.server import Server [as 别名]
# 或者: from gstswitch.server.Server import gst_option_string [as 别名]
def test_option_string(self):
"""Test option_string property"""
serv = Server(path="abc")
serv._start_process = Mock()
serv.gst_option_string = "-ZZZ"
serv._run_process()
serv._start_process.assert_called_once()
assert "-ZZZ" in serv._start_process.call_args[0][0]