本文整理汇总了Python中myLib.miro_app.MiroApp.corrupt_db_dialog方法的典型用法代码示例。如果您正苦于以下问题:Python MiroApp.corrupt_db_dialog方法的具体用法?Python MiroApp.corrupt_db_dialog怎么用?Python MiroApp.corrupt_db_dialog使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类myLib.miro_app.MiroApp
的用法示例。
在下文中一共展示了MiroApp.corrupt_db_dialog方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_88_461
# 需要导入模块: from myLib.miro_app import MiroApp [as 别名]
# 或者: from myLib.miro_app.MiroApp import corrupt_db_dialog [as 别名]
def test_88_461(self):
"""http://litmus.pculture.org/show_test.cgi?id=461 upgrade corrupt db, submit crash no db
Litmus Test Title:: 461 - upgrade with corrupted db, submit crash no db
Description:
1. Replace Miro db with a corrupt database.
2. Launch miro and submit crash report with db
"""
try:
miro = MiroApp()
miro.quit_miro()
db = os.path.join(os.getenv("PCF_TEST_HOME"),"Miro","TestData","databases","corrupt_db")
myLib.config.replace_database(db)
#set the search regions
miro.restart_miro()
miro.corrupt_db_dialog(action="submit_crash",db=False)
finally:
miro.quit_miro()
myLib.config.set_def_db_and_prefs()