Case Study: Building Software in Python
Mark Pedigo
Principal Data Scientist
doctest
, pytest
doctest
: Validate docstring examplesdef 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()
Everything OK = no error messages, no output
Case Study: Building Software in Python