Ticket #13628: unitdest-warning.diff
File unitdest-warning.diff, 797 bytes (added by , 14 years ago) |
---|
-
topics/testing.txt
73 73 Doctests use Python's standard doctest_ module, which searches your docstrings 74 74 for statements that resemble a session of the Python interactive interpreter. 75 75 A full explanation of how doctest works is out of the scope of this document; 76 read Python's official documentation for the details. 76 read Python's official documentation for the details. doctests should be 77 avoided used and used primarily for documentation and examples only. This is 78 because a failing doctest can be difficult to find to debug and resolve as it 79 isn't always clear why it failed. 77 80 78 81 .. admonition:: What's a **docstring**? 79 82