如何测试两个字典是否与python中的pytest相等
问题描述
试图用pytest断言具有嵌套内容的两个字典彼此相等(顺序无关紧要)。要做到这一点,蟒蛇的方法是什么?解决方案
不要花时间自己编写此逻辑。只需使用默认测试库unittest
from unittest import TestCase
TestCase().assertDictEqual(expected_dict, actual_dict)
相关文章
不要花时间自己编写此逻辑。只需使用默认测试库unittest
from unittest import TestCase
TestCase().assertDictEqual(expected_dict, actual_dict)
相关文章