Re: [Apache-dispatch-devel] SF.net SVN: apache-dispatch: [56] trunk
Brought to you by:
geoffrey_young,
phred_moyer
|
From: Geoffrey Y. <ge...@mo...> - 2007-08-05 23:57:36
|
> -use Apache::Test qw(ok plan :withtestmore ); > +use Apache::Test qw( :withtestmore ); > use Apache::TestRequest qw(GET); > +use Test::More; > > plan tests => 5, need_lwp; I'm pretty sure you want -withtestmore here - IIRC, :withtestmore gives you Test::More symbols, in which case plan() is Test::More::plan() and doesn't recognize the optional parameters, whereas the -withtestmore action is more dwimmy. sorry for the confusion, especially if my memory is cloudy :) --Geoff |