johnnywang has asked for the wisdom of the Perl Monks concerning the following question:
Now typically when I change some code, a few tests will fail. Since running all tests can take some time, I'd like to only run the failed tests when I'm trying to fix them. So I found myself constantly commenting out test cases(Test::More does allow SKIP, but that's also pretty tedious). What I'd like is something like pass a list of test numbers to the script to instruct it to only run those tests, is there some good way to do that? Thanks.use Test::More; ok($yes, "test ..."); is($this,$that, "test ..."); # many of these ....
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
•Re: How to do less tests with Test::More?
by merlyn (Sage) on Aug 18, 2004 at 20:50 UTC | |
|
Re: How to test less with Test::More?
by McMahon (Chaplain) on Aug 18, 2004 at 21:49 UTC | |
|
Re: How to test less with Test::More?
by eserte (Deacon) on Aug 19, 2004 at 09:09 UTC | |
by Mr. Muskrat (Canon) on Aug 19, 2004 at 15:50 UTC | |
by eserte (Deacon) on Aug 19, 2004 at 17:05 UTC | |
by Mr. Muskrat (Canon) on Aug 19, 2004 at 17:54 UTC | |
by eserte (Deacon) on Aug 24, 2004 at 17:04 UTC | |
|
Re: How to test less with Test::More?
by dragonchild (Archbishop) on Aug 19, 2004 at 13:09 UTC |