Coverage for databases/tests/types/test_compat.py: 100%

5 statements  

« prev     ^ index     » next       coverage.py v7.2.7, created at 2024-04-28 15:17 +0000

1from prisma.models import Types 

2from prisma._compat import model_json_schema 

3 

4 

5def test_json_schema_compatible() -> None: 

6 """Ensure a JSON Schema can be created for all types""" 

7 # this is just a catch-all to check if any errors are raised during schema creation 

8 # actual schema definitions are tested individually for each type 

9 schema = model_json_schema(Types) 

10 assert isinstance(schema, dict)