foreach my $solution ( ... ) { foreach my $test ( ... ) { ok( ... ); } } #### foreach my $solution ( ... ) { harness "tests for $solution" { foreach my $test ( ... ) { ok( ... ); } } } #### ok 1 - kyle test 1 ok 2 - kyle test 2 ok 3 - elyk test 1 not ok 4 - elyk test 2 # four # lines # of # stuff #### kyle...ok elyk...dubious