blob: 379673781557389d37828b7431b05a080a12a954 [file] [log] [blame]
use super::*;
#[test]
fn slice_debug_output() {
let input = Slice::from_u8_slice(b"\xF0hello,\tworld");
let expected = r#""\xF0hello,\tworld""#;
let output = format!("{:?}", input);
assert_eq!(output, expected);
}