R
rtilley
What is the most prevalent way of using unit testing in Ruby? Do I
require 'test/unit' and add test methods to production scripts and then
comment the testing portions out when not testing? Or, should I develop
a 'testing' version of the scripts identical to the production versions?
Thanks for any advice. I've got the concept down... just thinking about
implementation and actively using tests.
Brad
require 'test/unit' and add test methods to production scripts and then
comment the testing portions out when not testing? Or, should I develop
a 'testing' version of the scripts identical to the production versions?
Thanks for any advice. I've got the concept down... just thinking about
implementation and actively using tests.
Brad