gpt4 book ai didi

python - 如何在 doctest 中插入尾随空格,以便即使实际结果和预期结果看起来相同也不会失败?

转载 作者:行者123 更新时间:2023-12-03 14:12:28 25 4
gpt4 key购买 nike

我正在尝试做一个doctest。 “预期”和“得到”结果是相同的,但我的 doctest 仍然失败。它失败了,因为 x-axis y-axis 之后有尾随空格在我没有包含在我的文档字符串中的打印输出中。我该如何包含它?当我手动插入空格并进行测试时,只要将光标保持在那里,它就会成功运行。

x 轴 y 轴______________[此处的光标]

但是,如果我在其他地方使用光标运行测试,则尾随空格将被删除并且测试失败。

我知道这听起来很奇怪,但事实就是如此!

这是代码:

import pandas as pd
import doctest


class NewDataStructure(pd.DataFrame):
"""
>>> arrays = [[1, 1, 2, 2], [10, 20, 10, 20]]
>>> index = pd.MultiIndex.from_arrays(arrays, names=('x-axis', 'y-axis'))
>>> data_input = {"Pressure (Pa)": [1+1j, 2+2j, 3+3j, 4+4j],
... "Temperature": [1, 2, 3, 4]}
>>> new_data_variable = NewDataStructure(data=data_input, index=index, title="Pressures and temperatures")
>>> print new_data_variable
New Data Structure Pressures and temperatures:
Pressure (Pa) Temperature
x-axis y-axis
1 10 (1+1j) 1
20 (2+2j) 2
2 10 (3+3j) 3
20 (4+4j) 4

"""
def __init__(self, data, index, title):
super(NewDataStructure, self).__init__(data=data, index=index)
self.title = title

def __str__(self):
return "New Data Structure {}:\n{}".format(self.title, super(NewDataStructure, self).__str__())

doctest.testmod()

以下是我失败时的结果。即使在这里,您也应该能够选择 x-axis y-axis 之后的区域并检测是否有尾随空格。
Failed example:
print new_data_variable
Expected:
New Data Structure Pressures and temperatures:
Pressure (Pa) Temperature
x-axis y-axis
1 10 (1+1j) 1
20 (2+2j) 2
2 10 (3+3j) 3
20 (4+4j) 4
Got:
New Data Structure Pressures and temperatures:
Pressure (Pa) Temperature
x-axis y-axis
1 10 (1+1j) 1
20 (2+2j) 2
2 10 (3+3j) 3
20 (4+4j) 4

最佳答案

我找到了一个解决方案,使用 normalize white space flag

把它放在 doctest 中

    >>> print new_data_variable # doctest: +NORMALIZE_WHITESPACE

或者在调用 doctest 时
doctest.testmod( optionflags= doctest.NORMALIZE_WHITESPACE ) 

关于python - 如何在 doctest 中插入尾随空格,以便即使实际结果和预期结果看起来相同也不会失败?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42372351/

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