Coverage for src/pytest_samples/tools/__init__.py: 100%

4 statements  

« prev     ^ index     » next       coverage.py v7.4.2, created at 2024-02-20 19:47 +0000

1"""This module contains tool functions.""" 

2 

3__all__ = [ 

4 "move_idx_to_end", 

5 "copy_fileobj_to_func", 

6 "count_truefalse" 

7] 

8 

9 

10from ._collectiontools import move_idx_to_end 

11from ._iotools import copy_fileobj_to_func 

12from ._iterabletools import count_truefalse