Sai
Sai

Reputation: 703

UI tools for Ruby testing framework

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:

  1. List all tests within the project
  2. List all tests within a given file in the project
  3. Be able to run a group of tests or a single test and get feedback

Upvotes: 0

Views: 600

Answers (2)

simoraman
simoraman

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

Jay Truluck
Jay Truluck

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

Related Questions