Coverage for human_requests / __init__.py: 100%

7 statements  

« prev     ^ index     » next       coverage.py v7.13.4, created at 2026-03-07 17:38 +0000

1from .autotest import ( 

2 autotest, 

3 autotest_data, 

4 autotest_depends_on, 

5 autotest_hook, 

6 autotest_params, 

7 autotest_policy, 

8) 

9from .base import ApiChild, ApiParent, api_child_field 

10from .human_browser import HumanBrowser 

11from .human_context import HumanContext 

12from .human_page import HumanPage 

13 

14__all__ = [ 

15 "HumanBrowser", 

16 "HumanContext", 

17 "HumanPage", 

18 "ApiChild", 

19 "ApiParent", 

20 "api_child_field", 

21 "autotest", 

22 "autotest_depends_on", 

23 "autotest_data", 

24 "autotest_hook", 

25 "autotest_policy", 

26 "autotest_params", 

27] 

28 

29__version__ = "0.1.9"