mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
parent
f47e830cfb
commit
15019a2a43
32 changed files with 196 additions and 118 deletions
|
@ -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());
|
||||
}
|
||||
|
|
|
@ -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());
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue