Re: [Perlunit-users] Test::Unit::TestCase
Status: Beta
Brought to you by:
mca1001
From: Adam S. <ad...@sp...> - 2002-01-23 14:32:27
|
Kyle Brost (Kyl...@qu...) wrote: > I have recently picked up the package and I'm using it with some success. > So far, I only have one 'TestCase' module with multiple tests. I'm using > the Test::Unit::TestRunner to kick off the tests. Currently it executes all > tests within the module. Is there anyway to control which tests it > executes? Set a package global in your test case: our @TESTS = qw(method1 method2); That's not documented, or even tested. Hrm. Added to docs/TODO... |