How to build HTML reports from Test::Unit?
I am using Selenium Webdriver + Test::Unit test runner for Ruby. Ultimately, I want to output the testing results to HTML page. Could you advise me how to do it? Seems like RSpec testing library has this functionalit开发者_如何学Pythony, but what about Test::Unit? Thank you in advance.
Try RCov (https://github.com/relevance/rcov) or SimpleCov (https://github.com/colszowka/simplecov), they offer test coverage outputs in HTML. I'm aware this is not what you're looking for, but they could help you ;)
cheers,
A.
I know I'm answering this question very late.
I have recently started developing a gem to emit HTML reports from Test::Unit ruby. Please have a look and comment. That might be useful for any of your future projects.
精彩评论