Coverage for human_requests/__init__.py: 100%

6 statements  

« prev     ^ index     » next       coverage.py v7.14.1, created at 2026-05-28 00:39 +0000

1from .autotest import ( 

2 autotest, 

3 autotest_data, 

4 autotest_depends_on, 

5 autotest_hook, 

6 autotest_params, 

7 autotest_policy, 

8) 

9from .human_browser import HumanBrowser 

10from .human_context import HumanContext 

11from .human_page import HumanPage 

12 

13__all__ = [ 

14 "HumanBrowser", 

15 "HumanContext", 

16 "HumanPage", 

17 "autotest", 

18 "autotest_depends_on", 

19 "autotest_data", 

20 "autotest_hook", 

21 "autotest_policy", 

22 "autotest_params", 

23] 

24 

25__version__ = "0.2.2"