本文整理匯總了Python中pyccuracy.fixture.Fixture.get_failed_scenarios方法的典型用法代碼示例。如果您正苦於以下問題:Python Fixture.get_failed_scenarios方法的具體用法?Python Fixture.get_failed_scenarios怎麽用?Python Fixture.get_failed_scenarios使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類pyccuracy.fixture.Fixture
的用法示例。
在下文中一共展示了Fixture.get_failed_scenarios方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: test_fixture_returns_failed_scenarios
# 需要導入模塊: from pyccuracy.fixture import Fixture [as 別名]
# 或者: from pyccuracy.fixture.Fixture import get_failed_scenarios [as 別名]
def test_fixture_returns_failed_scenarios():
fixture = Fixture()
action = some_action()
other_action = some_action()
fixture.append_story(action.scenario.story)
fixture.append_story(other_action.scenario.story)
action.mark_as_failed()
other_action.mark_as_failed()
assert len(fixture.get_failed_scenarios()) == 2