本文整理汇总了Python中maglica.virt.Virt.stop方法的典型用法代码示例。如果您正苦于以下问题:Python Virt.stop方法的具体用法?Python Virt.stop怎么用?Python Virt.stop使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类maglica.virt.Virt
的用法示例。
在下文中一共展示了Virt.stop方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: stop
# 需要导入模块: from maglica.virt import Virt [as 别名]
# 或者: from maglica.virt.Virt import stop [as 别名]
def stop(args):
options = {
"mandatory": ["name"],
"optional" : [],
}
check_args(args, options)
virt = Virt(hosts())
virt.stop(args["name"])
示例2: test_stop_not_exist_exception
# 需要导入模块: from maglica.virt import Virt [as 别名]
# 或者: from maglica.virt.Virt import stop [as 别名]
def test_stop_not_exist_exception():
virt = Virt()
virt.stop("not_exist")
示例3: test_already_stopped_exception
# 需要导入模块: from maglica.virt import Virt [as 别名]
# 或者: from maglica.virt.Virt import stop [as 别名]
def test_already_stopped_exception():
virt = Virt()
virt.stop("test")
virt.stop("test")
示例4: test_start_and_stop
# 需要导入模块: from maglica.virt import Virt [as 别名]
# 或者: from maglica.virt.Virt import stop [as 别名]
def test_start_and_stop():
virt = Virt()
eq_(virt.stop("test"), 0)
eq_(virt.start("test"), 0)