当前位置: 首页>>代码示例>>Python>>正文


Python EventLoopTest.tearDown方法代码示例

本文整理汇总了Python中miro.test.framework.EventLoopTest.tearDown方法的典型用法代码示例。如果您正苦于以下问题:Python EventLoopTest.tearDown方法的具体用法?Python EventLoopTest.tearDown怎么用?Python EventLoopTest.tearDown使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在miro.test.framework.EventLoopTest的用法示例。


在下文中一共展示了EventLoopTest.tearDown方法的12个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: tearDown

# 需要导入模块: from miro.test.framework import EventLoopTest [as 别名]
# 或者: from miro.test.framework.EventLoopTest import tearDown [as 别名]
 def tearDown(self):
     self.remove_database()
     corrupt_path = os.path.join(os.path.dirname(self.save_path), "corrupt_database")
     if os.path.exists(corrupt_path):
         os.remove(corrupt_path)
     databaseupgrade._upgrade_overide = {}
     EventLoopTest.tearDown(self)
开发者ID:cool-RR,项目名称:Miro,代码行数:9,代码来源:storedatabasetest.py

示例2: tearDown

# 需要导入模块: from miro.test.framework import EventLoopTest [as 别名]
# 或者: from miro.test.framework.EventLoopTest import tearDown [as 别名]
 def tearDown(self):
     # need to close the db before removing it from disk
     app.db.close()
     self.remove_database()
     corrupt_path = os.path.join(os.path.dirname(self.save_path),
                                 'corrupt_database')
     if os.path.exists(corrupt_path):
         os.remove(corrupt_path)
     databaseupgrade._upgrade_overide = {}
     EventLoopTest.tearDown(self)
开发者ID:bluezone,项目名称:miro,代码行数:12,代码来源:storedatabasetest.py

示例3: tearDown

# 需要导入模块: from miro.test.framework import EventLoopTest [as 别名]
# 或者: from miro.test.framework.EventLoopTest import tearDown [as 别名]
 def tearDown(self):
     app.download_state_manager.shutdown_downloader(
             lambda: self.stopEventLoop(abnormal=False))
     self.runEventLoop()
     app.download_state_manager.daemon_starter = None
     EventLoopTest.tearDown(self)
开发者ID:ShriramK,项目名称:miro,代码行数:8,代码来源:downloadertest.py

示例4: tearDown

# 需要导入模块: from miro.test.framework import EventLoopTest [as 别名]
# 或者: from miro.test.framework.EventLoopTest import tearDown [as 别名]
 def tearDown(self):
     del app.device_manager
     EventLoopTest.tearDown(self)
开发者ID:devcult,项目名称:miro,代码行数:5,代码来源:devicestest.py

示例5: tearDown

# 需要导入模块: from miro.test.framework import EventLoopTest [as 别名]
# 或者: from miro.test.framework.EventLoopTest import tearDown [as 别名]
 def tearDown(self):
     EventLoopTest.tearDown(self)
     messages.BackendMessage.reset_handler()
     messages.FrontendMessage.reset_handler()
开发者ID:ShriramK,项目名称:miro,代码行数:6,代码来源:messagetest.py

示例6: tearDown

# 需要导入模块: from miro.test.framework import EventLoopTest [as 别名]
# 或者: from miro.test.framework.EventLoopTest import tearDown [as 别名]
 def tearDown(self):
     self.subprocess.shutdown()
     EventLoopTest.tearDown(self)
开发者ID:kmshi,项目名称:miro,代码行数:5,代码来源:subprocesstest.py

示例7: tearDown

# 需要导入模块: from miro.test.framework import EventLoopTest [as 别名]
# 或者: from miro.test.framework.EventLoopTest import tearDown [as 别名]
 def tearDown(self):
     EventLoopTest.tearDown(self)
     download.next_free_filename = download_utils.next_free_filename
     download.chatter = True
开发者ID:ShriramK,项目名称:miro,代码行数:6,代码来源:httpdownloadertest.py

示例8: tearDown

# 需要导入模块: from miro.test.framework import EventLoopTest [as 别名]
# 或者: from miro.test.framework.EventLoopTest import tearDown [as 别名]
 def tearDown(self):
     del app.testing_mdp
     EventLoopTest.tearDown(self)
开发者ID:codito,项目名称:miro,代码行数:5,代码来源:moviedatatest.py

示例9: tearDown

# 需要导入模块: from miro.test.framework import EventLoopTest [as 别名]
# 或者: from miro.test.framework.EventLoopTest import tearDown [as 别名]
 def tearDown(self):
     shutil.rmtree(self.mytempdir, ignore_errors=True)
     EventLoopTest.tearDown(self)
开发者ID:CodeforEvolution,项目名称:miro,代码行数:5,代码来源:itemtest.py

示例10: tearDown

# 需要导入模块: from miro.test.framework import EventLoopTest [as 别名]
# 或者: from miro.test.framework.EventLoopTest import tearDown [as 别名]
 def tearDown(self):
     app.directory_watcher = None
     EventLoopTest.tearDown(self)
开发者ID:codito,项目名称:miro,代码行数:5,代码来源:watchedfoldertest.py

示例11: tearDown

# 需要导入模块: from miro.test.framework import EventLoopTest [as 别名]
# 或者: from miro.test.framework.EventLoopTest import tearDown [as 别名]
 def tearDown(self):
     EventLoopTest.tearDown(self)
     workerprocess.shutdown()
开发者ID:ShriramK,项目名称:miro,代码行数:5,代码来源:subprocesstest.py

示例12: tearDown

# 需要导入模块: from miro.test.framework import EventLoopTest [as 别名]
# 或者: from miro.test.framework.EventLoopTest import tearDown [as 别名]
 def tearDown(self):
     EventLoopTest.tearDown(self)
     self.stopEventLoop(abnormal=False)
开发者ID:ShriramK,项目名称:miro,代码行数:5,代码来源:flashscrapertest.py


注:本文中的miro.test.framework.EventLoopTest.tearDown方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。