mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
More tests (#368)
This commit is contained in:
parent
34142e1ae2
commit
e0b5284fdd
9 changed files with 82 additions and 37 deletions
|
@ -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(), ());
|
||||
|
|
|
@ -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");
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue