/t/re/rt122747.t

https://github.com/rurban/perl · Perl · 33 lines · 25 code · 7 blank · 1 comment · 3 complexity · 4952061ffe29fcccb9aaff5f8d87e21a MD5 · raw file

  1. #!./perl
  2. use strict;
  3. use warnings;
  4. $| = 1;
  5. BEGIN {
  6. chdir 't' if -d 't';
  7. @INC = ('../lib','.','../ext/re');
  8. require './test.pl';
  9. if (is_miniperl()) {
  10. skip_all_if_miniperl("Unicode tables not built yet", 2)
  11. unless eval 'require "unicore/Heavy.pl"';
  12. }
  13. }
  14. plan tests => 3;
  15. use strict;
  16. my(@body) = (
  17. "<mailto:xxxx.xxxx\@outlook.com>",
  18. "A\x{B9}ker\x{E8}eva xxxx.xxxx\@outlook.com \x{201D}",
  19. );
  20. for (@body) {
  21. s{ <? (?<!mailto:) \b ( [a-z0-9.]+ \@ \S+ ) \b
  22. (?: > | \s{1,10} (?!phone) [a-z]{2,11} : ) }{ }xgi;
  23. my $got= $1;
  24. is( $got, '.xxxx@outlook.com' );
  25. }
  26. ok("got to the end without dieing (note without DEBUGGING passing this test means nothing)");