| Crates.io | fluvio-test-derive |
| lib.rs | fluvio-test-derive |
| version | 0.1.1 |
| created_at | 2020-09-21 22:10:46.262183+00 |
| updated_at | 2021-05-08 05:57:16.583447+00 |
| description | Procedure macro to run async fn as test |
| homepage | |
| repository | https://github.com/infinyon/flv-future |
| max_upload_size | |
| id | 291319 |
| size | 15,976 |
To run a test, annotate as below:
#[test_async]
async fn test_sum() -> Result<(),std::io::Result> {
assert(true,"I am alive);
Ok(())
}