summaryrefslogtreecommitdiff
path: root/cpan/Text-Tabs/t/dandv.t
blob: 6aad2eaf4a3f92c3d4a646f146ccdd6853ae1a43 (plain)
1
2
3
4
5
6
7
8
9
no strict; no warnings;

use Text::Wrap;
use Test::More tests => 2;
$Text::Wrap::columns = 4;
eval { $x = Text::Wrap::wrap('', '123', 'some text'); };
is($@, '');
is($x, "some\n123t\n123e\n123x\n123t");