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


Python pytest_bdd.scenario方法代码示例

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


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

示例1: test_scenario_backtest_recipe

# 需要导入模块: import pytest_bdd [as 别名]
# 或者: from pytest_bdd import scenario [as 别名]
def test_scenario_backtest_recipe(capsys):
    """ BIZARRE SIDE EFFECT if you dont have capsys in the scenario function:

    tests/features/test_OTCmd2.py:69: in vTestWhen
        sOut, sErr = capsys.readouterr()
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

    self = <_pytest.capture.CaptureFixture instance at 0xb0f66fcc>

        def readouterr(self):
            try:
                return self._capture.readouterr()
            except AttributeError:
    >           return self._outerr
    E           AttributeError: CaptureFixture instance has no attribute '_outerr'

    /usr/lib/python2.7/site-packages/_pytest/capture.py:198: AttributeError
    """
    pass 
开发者ID:OpenTrading,项目名称:OpenTrader,代码行数:21,代码来源:test_OTCmd2.py

示例2: test_scenario_backtest_omlette

# 需要导入模块: import pytest_bdd [as 别名]
# 或者: from pytest_bdd import scenario [as 别名]
def test_scenario_backtest_omlette(capsys):
    # FixMe: How do you get the arguments to @scenario in pytest_bdd
    pass 
开发者ID:OpenTrading,项目名称:OpenTrader,代码行数:5,代码来源:test_OTCmd2.py

示例3: test_file_with_scenario

# 需要导入模块: import pytest_bdd [as 别名]
# 或者: from pytest_bdd import scenario [as 别名]
def test_file_with_scenario(testdir, scenario, feature):
    testdir.makepyfile(current_test="""
    from pytest_bdd import scenario

    @scenario("{feature}.feature", "{scenario}")
    def test_it():
        pass

    """.format(scenario=scenario, feature=feature)) 
开发者ID:allure-framework,项目名称:allure-python,代码行数:11,代码来源:pytest_bdd_steps.py


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