describe

Describe is a testing toolkit for writing legible, ergonomic unit tests.

Getting started

Describe exposes one function for creating a new test case, assert_that. ```Rust use describe::assert_that;

// An example function to test. fn getanswerto_life() -> u8 { 42 }

...

// Assert that the answer to life is 42. assertthat(&getanswertolife()).is(&42); ```