Test iter_from/iter_dup_from with nonexistent keys

without.crypto
Tony Arcieri 8 years ago committed by Dan Burkert
parent 869e16d1d2
commit 126aa4cd6c
  1. 3
      src/cursor.rs

@ -446,6 +446,8 @@ mod test {
assert_eq!(items.clone().into_iter().skip(1).collect::<Vec<_>>(),
cursor.iter_from(b"key2").unwrap().collect::<Vec<_>>());
assert!(cursor.iter_from(b"foo").is_err());
}
#[test]
@ -492,6 +494,7 @@ mod test {
assert_eq!(items.clone().into_iter().skip(3).take(3).collect::<Vec<(&[u8], &[u8])>>(),
cursor.iter_dup_of(b"b").unwrap().collect::<Vec<_>>());
assert!(cursor.iter_dup_from(b"foo").is_err());
assert!(cursor.iter_dup_of(b"foo").is_err());
}

Loading…
Cancel
Save