More tests (#368)

This commit is contained in:
Nikolay Kim 2024-05-29 20:30:14 +05:00 committed by GitHub
parent 34142e1ae2
commit e0b5284fdd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 82 additions and 37 deletions

View file

@ -296,6 +296,10 @@ mod tests {
let s = "test".to_string();
assert_eq!(s.host(), "test");
assert_eq!(s.port(), None);
let s = ByteString::from("test");
assert_eq!(s.host(), "test");
assert_eq!(s.port(), None);
}
#[test]

View file

@ -231,7 +231,10 @@ mod tests {
ntex_service::fn_service(|_| async { Ok::<_, ()>(()) })
});
let srv = Connector::default().tag("T").memory_pool(PoolId::P5);
let srv = Connector::default()
.tag("T")
.memory_pool(PoolId::P5)
.clone();
let result = srv.connect("").await;
assert!(result.is_err());
let result = srv.connect("localhost:99999").await;