Jon Pretty
Jon Pretty
The report shows the timings of each test without any units, and these should be shown. The same units should be used for every test in the report (or at...
Probably's command-line interface accepts a list of arguments, being the hashes of the tests it should run. (If none are specified, then all tests are run.) But it would be...
Probably provides the `Suite` type as a simple way of creating a test runner application which can be invoked from a shell. Issue #30 proposes adding several command line options...
The `assert` macro's implementation requires it to attempt to pattern match on equality predicates. But equality predicates involving primitive types seem to have different AST representations so that a single...
Currently, the `check` macro does not examine the predicate like the `assert` method does, so there is no useful debug information when a test fails.
Code to do this exists in Guillotine (and may soon exist in Nettlesome), but could be generalized.
When the type of an expression that's substituted into an interpolated string is `Nothing`, it probably means that the value is erroneous, and a message has already been emitted. If...