pytest:fixture中有入参时如何编写

Posted gcgc

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pytest:fixture中有入参时如何编写相关的知识,希望对你有一定的参考价值。

如果fixture中需要入参时,不是直接返回数据,而是返回生成数据的函数。然后可以在测试用例中调用此函数。

@pytest.fixture
def make_customer_record():
    def _make_customer_record(name):
        return {"name": name, "orders": []}

    return _make_customer_record


def test_customer_records(make_customer_record):
    customer_1 = make_customer_record("Lisa")
    customer_2 = make_customer_record("Mike")
    customer_3 = make_customer_record("Meredith")

 

以上是关于pytest:fixture中有入参时如何编写的主要内容,如果未能解决你的问题,请参考以下文章

pytest文档68-pytest-lazy-fixture 插件解决 pytest.mark.parametrize 中使用 fixture 问题

pytest文档67-pytest.mark.parametrize 中使用 fixture

pytest.10.使用fixture参数化测试预期结果

Pytest

python 在同一级别和mock.patch中编写pytest fixture

pytest的fixture