Coverage for tests/test_simple.py: 100.00%

3 statements  

« prev     ^ index     » next       coverage.py v7.2.7, created at 2023-06-24 17:04 +0000

1# the inclusion of the tests module is not meant to offer best practices for 

2# testing in general, but rather to support the `find_packages` example in 

3# setup.py that excludes installing the "tests" package 

4 

5import sample.simple 

6 

7 

8def test_add_one(): 

9 assert sample.simple.add_one(5) == 6