0

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
1

2 Answers 2

1

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.

Sign up to request clarification or add additional context in comments.

Comments

0

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.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.