Reputation: 703
Is there a UI for Ruby's testing framework similar to JUnit's UI that's built into Eclipse or MSUnit built into Visual Studio? However, I am not particularly interested in an IDE integration. It could be a standalone application, most likely web. This should have the basic functionality of all unit-testing tools:
Upvotes: 0
Views: 600
Reputation: 939
RubyMine has a graphical test runner. It obviously costs money(unless you are doing open-source) and it comes with a complete IDE, which may not be what you want. It is the only graphical test runner for ruby that I have heard of.
Have you considered rolling your own? You might be able to get the basics working pretty easily.
Upvotes: 0
Reputation: 1519
I am not very familiar with JUnit, but you could integrate something like simplecov for coverage results for your tests.
You can also use a CI server like Jenkins CI or Travis CI
These tools should cover all of the requirements you list when used in tandem with a testing framework.
Upvotes: 1