Add insufficient length test

It seems to me like if we're already testing for an overly long slice, we might as well check for one that is too short as well.
This commit is contained in:
Chad Dougherty 2020-07-12 21:40:03 -04:00 committed by GitHub
parent c52be7dfcb
commit 9315da0f21
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -127,4 +127,10 @@ mod tests {
let v = vec![0, 0, 0, 0];
let _ = Color::try_from(&v[..]).unwrap();
}
#[test]
#[should_panic]
fn test_slice_insufficient_length() {
let v = vec![0, 0];
let _ = Color::try_from(&v[..]).unwrap();
}
}