are there any plans to support async tests? i.e.: is there a way to get tokio::test behaviour with rustest::test? constructing the tokio runtime by hand is cumbersome.
and are there any plans for async test fixtures?
since rustest is a complete test harness it might be nice if rustest starts a single tokio runtime in the beginning (if any async tests have been registered) and then re-uses that every time. that way async fixtures should also be easier to support?
are there any plans to support
asynctests? i.e.: is there a way to gettokio::testbehaviour withrustest::test? constructing the tokio runtime by hand is cumbersome.and are there any plans for
asynctest fixtures?since
rustestis a complete test harness it might be nice ifrusteststarts a single tokio runtime in the beginning (if anyasynctests have been registered) and then re-uses that every time. that wayasyncfixtures should also be easier to support?