Pytest and hypothesis examples.
Run using ‘pytest test.py’
Return x +1.
>>> add(2) 3
Return s.
Square x.
>>> square(2) 4 >>> square(-2) 4
Test add.
Test string.
Test square.