xref: /openbsd-src/gnu/usr.bin/perl/cpan/Text-Tabs/t/Jochen.t (revision 256a93a44f36679bee503f12e49566c2183f6181)
1use strict; use warnings;
2
3BEGIN { require './t/lib/ok.pl' }
4use Text::Wrap;
5
6print "1..1\n";
7
8$Text::Wrap::columns = 1;
9eval { wrap('', '', ''); };
10
11ok( !$@ );
12
13