Is there an built-in UI support in the Ruby unit test framework? Can I show the results of my unit test in the UI?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
In ruby 1.8, test/unit apparently had support for a couple of different runners.
For ruby 1.9, you may need to install the test/unit gem version to get the equivalent. |
|||
|
|
|
no, I would probably use Cucumber (www.cukes.info) along with capybara (for web browser UI). |
|||
|
|
|
No, AFAIK, there is no Ruby unit testing framework that has support for GUI built in. That's not how it normally works, anyway. Usually, it's the GUIs that support testing frameworks, not the other way round. And in fact, most Ruby GUI IDEs (and some non-GUI IDEs, and GUI non-IDEs as well) support at least |
|||
|
|