Graphical user visualization for testing Ruby

What tool (small) can we use to visualize a graphical test result?

Actually, I would like to display a graphic instead of this test (for example):

Finished in 3.44 seconds 5 examples, 0 failures 

Maybe, for example, the JS graph, where each tested test can be red ...

Thanks.

+4
source share
3 answers

If you use a continuous integration tool like Hudson, you can display glitches over time.

+2
source

Well rspec comes with html format. you can just pass the parameter to the command line, for example

 rspec -f html -o index.html 

You can also inherit the RSpec formatter to write your own formatter.

+2
source

You may be looking for fuubar , this is not JS, but it shows a good progress bar in colors. I also use it to get an overview of tests for passing or failing.

+1
source

All Articles