()
| 325 | |
| 326 | @needs_cffi |
| 327 | def test_export_import_schema_with_extension(): |
| 328 | # Extension type is unregistered => the storage type is imported |
| 329 | check_export_import_schema(make_extension_schema, |
| 330 | make_extension_storage_schema) |
| 331 | |
| 332 | # Extension type is registered => the extension type is imported |
| 333 | with registered_extension_type(ParamExtType(1)): |
| 334 | check_export_import_schema(make_extension_schema) |
| 335 | |
| 336 | |
| 337 | @needs_cffi |
nothing calls this directly
no test coverage detected