xref: /openbsd-src/gnu/usr.bin/perl/cpan/Text-Tabs/t/39548.t (revision 256a93a44f36679bee503f12e49566c2183f6181)
1use strict; use warnings;
2
3BEGIN { require './t/lib/ok.pl' }
4use Text::Wrap;
5
6# https://rt.perl.org/rt3/Ticket/Display.html?id=39548
7
8print "1..1\n";
9
10my $VAR1 = " (Karl-Bonhoeffer-Nervenklinik zwischen Hermann-Piper-Str. und U-Bahnhof) ";
11my $VAR2 = " ";
12my $VAR3 = "(5079,19635 5124,19634 5228,19320 5246,19244)\n";
13eval { Text::Wrap::wrap($VAR1,$VAR2,$VAR3); };
14ok( !$@ );
15