schemars/schemars/tests/smallvec.rs
Graham Esau a97d54bcad Implement JsonSchema on smallvec + arrayvec types
Documentation still needs updating.
2019-12-28 20:11:38 +00:00

8 lines
159 B
Rust

mod util;
use smallvec::SmallVec;
use util::*;
#[test]
fn smallvec() -> TestResult {
test_default_generated_schema::<SmallVec<[String; 2]>>("smallvec")
}