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

@ -141,11 +141,13 @@ mod test {
e.as_ref();
e.as_mut();
let e = Either::<(), ()>::Right(());
let mut e = Either::<(), ()>::Right(());
assert!(!e.is_left());
assert!(e.is_right());
assert!(e.left().is_none());
assert!(e.right().is_some());
e.as_ref();
e.as_mut();
assert_eq!(Either::<(), ()>::Left(()).into_inner(), ());
assert_eq!(Either::<(), ()>::Right(()).into_inner(), ());

View file

@ -39,3 +39,22 @@ impl<T, E> From<Result<T, E>> for Ready<T, E> {
}
}
}
#[cfg(test)]
mod test {
use std::future::poll_fn;
use super::*;
#[ntex_macros::rt_test2]
async fn ready() {
let ok = Ok::<_, ()>("ok");
let mut f = Ready::from(ok);
let res = poll_fn(|cx| Pin::new(&mut f).poll(cx)).await;
assert_eq!(res.unwrap(), "ok");
let err = Err::<(), _>("err");
let mut f = Ready::from(err);
let res = poll_fn(|cx| Pin::new(&mut f).poll(cx)).await;
assert_eq!(res.unwrap_err(), "err");
}
}