File: heredoc_null_then_shift.t

package info (click to toggle)
libppr-perl 0.001010-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 932 kB
  • sloc: perl: 5,987; makefile: 2
file content (38 lines) | stat: -rw-r--r-- 482 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
use warnings;
use strict;
use Test::More;

BEGIN{
    BAIL_OUT "A bug in Perl 5.20 regex compilation prevents the use of PPR under that release"
        if $] > 5.020 && $] < 5.022;
}


plan tests => 2;

use PPR;

my $code = <<'_EOT_';

<<<<<<A;1

42
A
_EOT_

ok $code =~ m{
    \A
    (?&PerlOWS)
    (?<statement> (?&PerlStatement)?)
    1\n
    \n
    42\n
    A\n
    \Z

    $PPR::GRAMMAR
}x => 'Matched';

is $+{statement}, "<<<<<<A;" => 'Matched correctly';

done_testing();