in reply to Toggling test plans with vim
use Test::More; .... my $tests_planned; ... # subsystem 1 test BEGIN { $tests_planned ++ } # carry out one test ... # subsystem 2 test BEGIN { $test_planned += 3 } # carry out our 3 tests ... ... # Then plan the tests for Test::More right at the end BEGIN { plan( tests => $tests_planned ); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Toggling test plans with vim
by adrianh (Chancellor) on Aug 10, 2006 at 08:04 UTC | |
|
Re^2: Toggling test plans with vim
by BrowserUk (Patriarch) on Aug 10, 2006 at 06:02 UTC |