File: charnames.t

package info (click to toggle)
libregexp-grammars-perl 1.058-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 1,328 kB
  • sloc: perl: 53,328; makefile: 2
file content (12 lines) | stat: -rw-r--r-- 216 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
use Test::More 'no_plan';
use 5.010;

use charnames ':full';
use Regexp::Grammars;

my $grammar = qr{
    \N{LESS-THAN SIGN} a \N{GREATER-THAN SIGN}
}xms;

ok '<a>' =~ $grammar => '\N{NAMED} correctly interpolated'