Fallstudie: Software in Python entwickeln
Mark Pedigo
Principal Data Scientist


doctest, pytestdoctest: Docstring-Beispiele prüfendef area(l, w):
"""
Finds the area given length and width and returns the result
>>> area(1, 1)
1
"""
return l + w
import doctest
doctest.testmod()
Failed example:
area(1,1)
Expected:
1
Got:
2
def area(l, w):
"""
Finds the area given length and width and returns the result
>>> area(1, 1)
1
"""
return l * w
import doctest
doctest.testmod()
Alles OK = keine Fehlermeldungen, keine Ausgabe
Fallstudie: Software in Python entwickeln