Closed mkpankov closed 3 years ago
Currently it doesn't seem to work:
#[tokio::test] async fn test_case(name: &str) { }
Output:
error: the test function cannot accept arguments --> iml-services/iml-devices/src/db.rs:578:24 | 578 | async fn test_case(name: &str) { | ^^^^^^^^^^
Is there a way to provide a test_case::test_case_tokio macro to support async tests?
test_case::test_case_tokio
That'd be cool... However I'd like to hide it under feature gate.
It is fixed now via #48
Currently it doesn't seem to work:
Output:
Is there a way to provide a
test_case::test_case_tokio
macro to support async tests?