fluvio-future-derive 0.1.0

Procedure macro to run async fn as test
Documentation
1
2
3
4
5
6
7
8
9
10
# Friendly, test runner for async function

To run a test, annotate as below:
```
#[test_async]
async fn test_sum() -> Result<(), std::io::Error> {
    assert(true,"I am alive);
    Ok(())
}
```