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:
parent
c52be7dfcb
commit
9315da0f21
|
@ -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();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue