本文整理汇总了Python中test_utils.TestUtils.app_ready方法的典型用法代码示例。如果您正苦于以下问题:Python TestUtils.app_ready方法的具体用法?Python TestUtils.app_ready怎么用?Python TestUtils.app_ready使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类test_utils.TestUtils
的用法示例。
在下文中一共展示了TestUtils.app_ready方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_deploy
# 需要导入模块: from test_utils import TestUtils [as 别名]
# 或者: from test_utils.TestUtils import app_ready [as 别名]
handler_id = None
def test_deploy(self):
global handler_id
def handler(message):
if message.body == "started":
tu.test_complete()
handler_id = EventBus.register_handler("test-handler", False, handler)
conf = {'foo' : 'bar'}
vertx.deploy_verticle("core/deploy/child.py", conf)
def test_undeploy(self):
global handler_id
def handler(message):
if message.body == "stopped":
tu.test_complete()
handler_id = EventBus.register_handler("test-handler", False, handler)
conf = {'foo' : 'bar'}
def deploy_handler(id):
vertx.undeploy_verticle(id)
vertx.deploy_verticle("core/deploy/child.py", conf, handler=deploy_handler)
def vertx_stop():
EventBus.unregister_handler(handler_id)
tu.unregister_all()
tu.app_stopped()
tu.register_all(DeployTest())
tu.app_ready()