fluvio-test-derive 0.1.1

Procedure macro to run async fn as test
Documentation
# Friendly, test runner for async function

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