[Python-Dev] Unit testing (again)

Fredrik Lundh fredrik@effbot.org
Tue, 13 Feb 2001 22:33:20 +0100


> Cute:  Python changed the first line of its traceback output (used to say
> "Traceback (innermost last):"), and current doctest wasn't expecting that.

which reminds me...  are there any chance of getting a doctest
that can survives its own test suite under 1.5.2, 2.0, and 2.1?

the latest version blows up under 1.5.2 and 2.0:

*****************************************************************
Failure in example: 1/0
from line #155 of doctest
Expected: ZeroDivisionError: integer division or modulo by zero
Got: ZeroDivisionError: integer division or modulo
1 items had failures:
   1 of   8 in doctest
***Test Failed*** 1 failures.

Cheers /F