uv-client 0.0.61

This is an internal component crate of uv
1
2
3
4
5
6
7
8
use uv_client::{DataWithCachePolicy, ErrorKind};

#[test]
fn reject_overflowing_cache_policy_length() {
    let error = DataWithCachePolicy::from_reader(&[u8::MAX; 8][..]).unwrap_err();

    assert!(matches!(error.kind(), ErrorKind::ArchiveRead(_)));
}