terminusdb / terminusdb-store

a tokio-enabled data store for triple data

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

refactor tests to properly use tokio::test

matko opened this issue · comments

Quite a few tests that required async have been written using block_on in the past, or some other construct. This was done because I did not know about the existence of tokio::test, an attribute macro which allows one to write an async test. It would be nice if existing tests were rewritten to make use of this.