Add test tag

This commit is contained in:
Mikayla 2023-11-13 16:49:17 -08:00
parent d197660d3b
commit 8bbced50c2
No known key found for this signature in database

View file

@ -1,9 +1,15 @@
#[cfg(any(test, feature = "test-support"))]
use std::time::Duration; use std::time::Duration;
#[cfg(any(test, feature = "test-support"))]
use futures::Future; use futures::Future;
#[cfg(any(test, feature = "test-support"))]
use smol::future::FutureExt; use smol::future::FutureExt;
pub use util::*; pub use util::*;
#[cfg(any(test, feature = "test-support"))]
pub async fn timeout<F, T>(timeout: Duration, f: F) -> Result<T, ()> pub async fn timeout<F, T>(timeout: Duration, f: F) -> Result<T, ()>
where where
F: Future<Output = T>, F: Future<Output = T>,