File: regex_self.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 (28 lines) | stat: -rw-r--r-- 507 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
use strict;
use warnings;
use utf8;

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 => 1;

use PPR;

if (open my $src_fh, '<', $INC{'PPR.pm'}) {
    my $src_code = do { local $/; readline $src_fh; };

    ok $src_code
        =~ m{ (?&PerlEntireDocument)  $PPR::GRAMMAR }xms
            => 'Matched own source';
}
else {
    fail "Can't open PPR source file: $!";
}

done_testing();