推荐学习书目
Learn Python the Hard Way
Python Sites
PyPI - Python Package Index
http://diveintopython.org/toc/index.html
Pocoo
值得关注的项目
PyPy
Celery
Jinja2
Read the Docs
gevent
pyenv
virtualenv
Stackless Python
Beautiful Soup
结巴中文分词
Green Unicorn
Sentry
Shovel
Pyflakes
pytest
Python 编程
pep8 Checker
Styles
PEP 8
Google Python Style Guide
Code Style from The Hitchhiker's Guide
dreampython
V2EX  ›  Python

学习《Dive Into Python3》 Python 单元测试问题

  •  
  •   dreampython · Mar 9, 2018 · 2819 views
    This topic created in 3005 days ago, the information mentioned may be changed or developed.
    http://www.diveintopython3.net/unit-testing.html 中 9.2 A Single Question 中执行 python3 romantest1.py -v 会出现以下详细的信息

    test_to_roman_known_values (__main__.KnownValues) ①
    to_roman should give known result with known input ... FAIL ②

    ======================================================================
    FAIL: to_roman should give known result with known input
    ----------------------------------------------------------------------
    Traceback (most recent call last):
    File "romantest1.py", line 73, in test_to_roman_known_values
    self.assertEqual(numeral, result)
    AssertionError: 'I' != None ③

    ----------------------------------------------------------------------
    Ran 1 test in 0.016s ④

    FAILED (failures=1) ⑤

    但是我自己在 windows 7 系统 python3.5.2 环境下执行 python romantest1.py -v,只输出

    PS E:\DiveIntoPython3> python .\romantest1.py -v

    ----------------------------------------------------------------------
    Ran 0 tests in 0.000s

    OK


    代码与连接中的完全相同,不知道哪里出了问题,各位有遇到过的?或者知道是哪里的问题?
    3 replies    2018-03-12 13:43:12 +08:00
    dreampython
        1
    dreampython  
    OP
       Mar 9, 2018
    找到原因了,test_to_roman_known_values 函数的缩进有问题,本应该是 KnownValues 类的类函数,缩进没注意弄成和 KnownValues 同级的了,调整缩进后,运行正常
    julyclyde
        2
    julyclyde  
       Mar 12, 2018
    @dreampython 那你应该研究一下为啥在 windows 里同样的却能运行成功啊
    julyclyde
        3
    julyclyde  
       Mar 12, 2018
    哦抱歉我看错了。忽略我上一条吧
    About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   2435 Online   Highest 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 35ms · UTC 16:06 · PVG 00:06 · LAX 09:06 · JFK 12:06
    ♥ Do have faith in what you're doing.