in reply to too much testing?

I'm not sure if I understand this correctly, but couldn't you do:
ok(! $foo->getDetails( PARAM_ONE => 1234 ), 'missing parameter');

Replies are listed 'Best First'.
Re^2: too much testing?
by geektron (Curate) on Sep 30, 2005 at 20:17 UTC
    because the module being tested  croaks when parameters are missing, that doens't catch the intended failure condition.

    the eval is the closest without trying Test::Exception.