diff options
Diffstat (limited to 'lib/Text/TabsWrap/t/Jochen.t')
-rwxr-xr-x | lib/Text/TabsWrap/t/Jochen.t | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/Text/TabsWrap/t/Jochen.t b/lib/Text/TabsWrap/t/Jochen.t new file mode 100755 index 0000000000..d4a3a8b76a --- /dev/null +++ b/lib/Text/TabsWrap/t/Jochen.t @@ -0,0 +1,11 @@ +#!/usr/bin/perl -I. + +use Text::Wrap; + +print "1..1\n"; + +$Text::Wrap::columns = 1; +eval { wrap('', '', ''); }; + +print $@ ? "not ok 1\n" : "ok 1\n"; + |