鼻子测试中的断言错误

发布于 2024-12-10 08:14:09 字数 589 浏览 0 评论 0原文

当我使用

nosetests --with-doctest --doctest-extension=txt

开始测试时,出现此错误。

<前><代码>F =================================================== =================== 失败:文档测试:README.txt -------------------------------------------------- -------------------- 回溯(最近一次调用最后一次): 文件“/usr/lib/python2.6/doctest.py”,第 2152 行,在 runTest 中 引发 self.failureException(self.format_failure(new.getvalue())) AssertionError:README.txt 的 doctest 测试失败 文件“/home/xralf/example/README.txt”,第 0 行

我应该如何修复这个错误?测试有什么问题吗(因为它是第 0 行)

谢谢

When I start tests with

nosetests --with-doctest --doctest-extension=txt

I got this error.

F
======================================================================
FAIL: Doctest: README.txt
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/lib/python2.6/doctest.py", line 2152, in runTest
    raise self.failureException(self.format_failure(new.getvalue()))
AssertionError: Failed doctest test for README.txt
  File "/home/xralf/example/README.txt", line 0

How should I repair this error? Is it something bad with test (because it's line 0)

thank you

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

寄人书 2024-12-17 08:14:09

在 README.txt 文件中应该有更多的空格,尤其是在不返回值的语句(如 import 语句)之后。

=============
example
=============
>>> a = 3
>>> a - 1
2
>>> from sqlite3 import dbapi2 as sqlite

some text

重要的是 import 语句后面的空格。没有它,这将无法工作。

In the README.txt file there should be more whitespace, especially after the statements that don't return a value (like import statements).

=============
example
=============
>>> a = 3
>>> a - 1
2
>>> from sqlite3 import dbapi2 as sqlite

some text

Important is the space after import statement. Without it this won't work.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文