Subject: | Skip counter in t/multi_content_type.t off by one |
I found this skip counter in t/multi_content_type.t:
Line 46: skip $skip, 8 if $skip;
But the block contains 9 checks. It's easy to count this wrong because
this statement contains two checks:
48 lives_ok { $m->get_ok( '/', 'Get a multi Content-Type
response' ) }
49 'Survive to a multi Content-Type sting';
It spits out:
ok 2 - Get a multi Content-Type response
ok 3 - Survive to a multi Content-Type sting
I wonder how this test could ever work anywhere.
HTH&&Thanks,