Coverage for src/jsoncrack_for_sphinx/fixtures.py: 100%

3 statements  

« prev     ^ index     » next       coverage.py v7.10.0, created at 2025-07-24 22:26 +0000

1""" 

2Backward compatibility module for fixtures 

3 

4This module provides backward compatibility for old imports. 

5All functionality has been moved to utils.fixtures. 

6""" 

7 

8from .generators.rst_generator import schema_to_rst 

9 

10# Re-export everything from the new location 

11from .utils.fixtures import ( 

12 create_function_schema, 

13 create_method_schema, 

14 create_option_schema, 

15) 

16 

17__all__ = [ 

18 "create_function_schema", 

19 "create_method_schema", 

20 "create_option_schema", 

21 "schema_to_rst", 

22]