Still working on an assertions library that I started a few weeks ago. I finally managed to get async assertions working:
expect!(foo(), when_ready, all, not, to_equal(0)).await;
It also captures values passed down the assertion chain and reports them on failure (without requiring all types to implement Debug since it uses autoref specialization).
Still working on an assertions library that I started a few weeks ago. I finally managed to get async assertions working:
It also captures values passed down the assertion chain and reports them on failure (without requiring all types to implement
Debug
since it uses autoref specialization).Hopefully it’ll be ready for a release soon.