9 lines
155 B
Rust
9 lines
155 B
Rust
|
|
mod util;
|
||
|
|
use bytes::{Bytes, BytesMut};
|
||
|
|
use util::*;
|
||
|
|
|
||
|
|
#[test]
|
||
|
|
fn bytes() -> TestResult {
|
||
|
|
test_default_generated_schema::<(Bytes, BytesMut)>("bytes")
|
||
|
|
}
|