简体   繁体   中英

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

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.

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.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM