diff options
Diffstat (limited to 't/re/pat.t')
-rw-r--r-- | t/re/pat.t | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/t/re/pat.t b/t/re/pat.t index c6e7f967b1..71cfeaaee4 100644 --- a/t/re/pat.t +++ b/t/re/pat.t @@ -20,7 +20,7 @@ BEGIN { require './test.pl'; } -plan tests => 732; # Update this when adding/deleting tests. +plan tests => 733; # Update this when adding/deleting tests. run_tests() unless caller; @@ -1599,6 +1599,11 @@ EOP ok("\x{101}" =~ /\x{101}/i, "A WITH MACRON l =~ l"); } + { + use utf8; + ok("abc" =~ /a
b
c/x, "NEL is white-space under /x"); + } + } # End of sub run_tests 1; |