* Eric Wilhelm <[EMAIL PROTECTED]> [2007-03-03T21:59:32]
> In fact, so much eyewringing that I've taken to this lately:
> 
>   use inc::testplan(0,
>     + 3   # use
>     + 199 # those others
>   );

What is that ... for?

I often do this:

  use Test::More;

  my @test_data = load_data('t/whatever.dat');
  plan tests => 3  +  @test_data * 3;

I'm not sure if your snippet is doing something else.

-- 
rjbs

Reply via email to