()
| 292 | |
| 293 | @needs_cffi |
| 294 | def test_export_import_schema_with_extension(): |
| 295 | # Extension type is unregistered => the storage type is imported |
| 296 | check_export_import_schema(make_extension_schema, |
| 297 | make_extension_storage_schema) |
| 298 | |
| 299 | # Extension type is registered => the extension type is imported |
| 300 | with registered_extension_type(ParamExtType(1)): |
| 301 | check_export_import_schema(make_extension_schema) |
| 302 | |
| 303 | |
| 304 | @needs_cffi |
nothing calls this directly
no test coverage detected