1#!/usr/bin/perl -w -I. 2 3# https://rt.perl.org/rt3/Ticket/Display.html?id=39548 4 5print "1..1\n"; 6require Text::Wrap; 7$VAR1 = " (Karl-Bonhoeffer-Nervenklinik zwischen Hermann-Piper-Str. und U-Bahnhof) "; 8$VAR2 = " "; 9$VAR3 = "(5079,19635 5124,19634 5228,19320 5246,19244)\n"; 10eval { Text::Wrap::wrap($VAR1,$VAR2,$VAR3); }; 11print $@ ? "not ok 1\n" : "ok 1\n"; 12