summaryrefslogtreecommitdiffstats
path: root/tokio-executor/tests/executor.rs
blob: fb039385519fa91259e321ca901f7a00a2b7c763 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#![warn(rust_2018_idioms)]
#![feature(async_await)]

use tokio_executor::{self, DefaultExecutor};

use std::future::Future;
use std::pin::Pin;

mod out_of_executor_context {
    use super::*;
    use tokio_executor::Executor;

    fn test<F, E>(spawn: F)
    where
        F: Fn(Pin<Box<dyn Future<Output = ()> + Send>>) -> Result<(), E>,
    {
        let res = spawn(Box::pin(async {}));
        assert!(res.is_err());
    }

    #[test]
    fn spawn() {
        test(|f| DefaultExecutor::current().spawn(f));
    }
}