More tests (#159)

* More tests
* clippy tests
This commit is contained in:
Nikolay Kim 2023-01-08 17:45:22 +06:00 committed by GitHub
parent f47e830cfb
commit 15019a2a43
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
32 changed files with 196 additions and 118 deletions

View file

@ -576,6 +576,7 @@ mod tests {
}
#[test]
#[allow(clippy::needless_borrow)]
fn test_basics() {
let m = HeaderMap::default();
assert!(m.is_empty());
@ -599,8 +600,7 @@ mod tests {
HeaderValue::from_static("text")
);
let keys: Vec<_> = m.keys().collect();
assert!(keys.contains(&&CONTENT_TYPE));
assert!(m.keys().any(|x| x == CONTENT_TYPE));
m.remove("content-type");
assert!(m.is_empty());
}

View file

@ -751,6 +751,7 @@ mod tests {
use super::*;
#[test]
#[allow(clippy::op_ref, clippy::cmp_owned, deprecated)]
fn test_basics() {
assert!(HeaderValue::from_str("").unwrap().is_empty());