gpt4 book ai didi

python - 在同一测试中重用 pytest fixture

转载 作者:行者123 更新时间:2023-12-01 01:49:56 24 4
gpt4 key购买 nike

下面是使用 user fixture 来设置测试的测试代码示例。

@pytest.fixture
def user():
# Setup db connection
yield User('test@example.com')
# Close db connection

def test_change_email(user):
new_email = 'new@example.com'
change_email(user, new_email)
assert user.email == new_email

如果我想,有没有办法使用相同的 fixture 在同一测试中生成多个用户对象添加批量更改用户电子邮件的功能,并且在测试前需要设置 10 个用户?

最佳答案

pytest 文档中有一个“factories as fixtures”部分解决了我的问题。

特别是这个示例(从链接复制/粘贴):

@pytest.fixture
def make_customer_record():

created_records = []

def _make_customer_record(name):
record = models.Customer(name=name, orders=[])
created_records.append(record)
return record

yield _make_customer_record

for record in created_records:
record.destroy()


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")

关于python - 在同一测试中重用 pytest fixture ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50826397/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com