blob: b6ee69ada148775194e080927cf21b7c8da13d35 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
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");
|