本文整理汇总了Python中doit.task.Task.executed方法的典型用法代码示例。如果您正苦于以下问题:Python Task.executed方法的具体用法?Python Task.executed怎么用?Python Task.executed使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类doit.task.Task
的用法示例。
在下文中一共展示了Task.executed方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_complete_run_verbosity2_redisplay
# 需要导入模块: from doit.task import Task [as 别名]
# 或者: from doit.task.Task import executed [as 别名]
def test_complete_run_verbosity2_redisplay(self):
rep = reporter.ConsoleReporter(StringIO(), {'failure_verbosity': 2})
catched = CatchedException("catched exception there",
Exception("foo"))
task = Task("t_name", None, verbosity=2)
task.executed = True
rep.add_failure(task, catched)
# assign new StringIO so output is only from complete_run()
rep.outstream = StringIO()
rep.complete_run()
got = rep.outstream.getvalue()
assert "<stdout>" in got
assert "<stderr>" in got