Help for this page

Select Code to Download


  1. or download this
    multi_like \@array, [
        qr/regex1/,
        qr/regex2/,
        ....
    ], "Test name";
    
  2. or download this
    subtest "All lines are like expected" => sub {
        like $array[0], qr/regex1/;
    ...
        ....
        is scalar @array, $nnn, "No extra lines";
    };