#![expect(missing_docs)]
use ::{
ebcc as _, ndarray as _, num_traits as _, postcard as _, schemars as _, serde as _,
serde_json as _, thiserror as _,
};
use numcodecs::{DynCodecType, StaticCodecType};
use numcodecs_ebcc::EbccCodec;
#[test]
fn schema() {
let schema = format!(
"{:#}",
StaticCodecType::<EbccCodec>::of()
.codec_config_schema()
.to_value()
);
if schema != include_str!("schema.json") {
panic!("EBCC schema has changed\n===\n{schema}\n===");
}
}