This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Build Text::Tabs before running mktables, as it needs it
[perl5.git] / ext / Text-Tabs / t / dandv.t
1
2 use Text::Wrap;
3 use Test::More tests => 2;
4 $Text::Wrap::columns = 4;
5 eval { $x = Text::Wrap::wrap('', '123', 'some text'); };
6 is($@, '');
7 is($x, "some\n123t\n123e\n123x\n123t");
8