use crate::common_macro::schema_imports::*; #[test] fn boxed_schema() { let boxed_declaration = Box::::declaration(); assert_eq!("String", boxed_declaration); let boxed_declaration = Box::<[u8]>::declaration(); assert_eq!("Vec", boxed_declaration); }