gpt4 book ai didi

python - 有没有一种首选方法可以使用 pytest 测试回调?

转载 作者:太空宇宙 更新时间:2023-11-03 13:44:36 24 4
gpt4 key购买 nike

我无法在文档、谷歌或此处找到使用 pytest 测试回调的具体示例。我发现了这个:What is the right way to test callback invocation using Python unittest? ;但它是用于单元测试的。我猜 pytest 的 monkeypatch 功能是我应该看的地方,但我是自动化测试的新手,正在寻找一个例子。

def foo(callback):
callback('Buzz', 'Lightyear')

#--- pytest code ----
def test_foo():
foo(hello)
# how do I test that hello was called?
# how do I test that it was passed the expected arguments?

def hello(first, last):
return "hello %s %s" % first, last

提前谢谢你。

最佳答案

思路还是一样。

您需要用 Mock 替换 hello() 函数,或者换句话说,“模拟”函数。

然后你可以使用assert_called_with()检查它是否使用您需要的特定参数调用。

关于python - 有没有一种首选方法可以使用 pytest 测试回调?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22864745/

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