ruby - A pretty GUI for autotest -


I was wondering if anyone knows about any good GUI for autotest?

The plugins I've already distributed with the autostast (tickling, horse racing etc.), which I need is slightly more.

I want a GUI that displays the total number of unsuccessful tests at all times, like the GUI, I will be allowed to click through the failed exam (open them in VIM). I want to see further stack trace. But I do not want this scene to be ruined too.

It's a good chance that what you are looking for is this whole IDE, but Netbeans is really Clean Ruby Test Support:

Built-in test framework in Ruby, Test :: Unit is directly supported, you can create new unit tests from the new menu. You run the run file (Shift-F6) on the files by bus, just by running your unit test. It opens with output from a test results window by executing unit tests and test result data. When you double-click the nodes in the statistics panel, you are taken to the respective declaration location in the editor, and you can navigate to the next / previous failure using arrow buttons.

You can also get test coverage (this will also give color codes to your files, so you can see immediately which lines are checked and Do not):


Comments