redding / assert

Assertion style testing framework.
https://github.com/redding/assert
MIT License
10 stars 1 forks source link

verbose output option #208

Closed kellyredding closed 9 years ago

kellyredding commented 9 years ago

-v|--verbose

instead of just the "dots", it outputs a line for every test, with trailing dots for the assertions in the test, plus a benchmark of the time the test took to run.

Here is an example from Minitest's equivalent:

ExampleTest#test_a_fast_operation = 0.00 s = .
ExampleTest#test_a_really_slow_operation = 1.00 s = .
ExampleTest#test_a_slower_operation = 0.33 s = .