Does anybody know how I do run a unit test(Test::Unit) within Ruby code itself? I couldn't find anything online to help me out. As we all know, you run unit tests from the command line by executing "ruby your_test_name.rb' I basically don't want to run from the command line but I want to run within the ruby code itself. Does anybody have any ideas? Thanks in advance for all your help.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
How can u imagine it? If you wanna start your code (tests) automatically after changes check out gem guard. 1) Setup guard Add to your Gemfile
than run
or if you don't use bundle
2) Generate guardfile
3) Run it
|
||||
|