This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Revert "Move Text::Tabs/Text::Wrap from lib to ext"
[perl5.git] / lib / Text / TabsWrap / t / dandv.t
CommitLineData
69e34dac
S
1
2use Text::Wrap;
3use Test::More tests => 2;
4$Text::Wrap::columns = 4;
5eval { $x = Text::Wrap::wrap('', '123', 'some text'); };
6is($@, '');
7is($x, "some\n123t\n123e\n123x\n123t");
8