xref: /openbsd-src/gnu/usr.bin/perl/cpan/Text-Tabs/t/wrap_separator2.t (revision 46035553bfdd96e63c94e32da0210227ec2e3cf1)
1#!/usr/local/bin/perl -w
2#Author: Dan Dascalescu
3use strict;
4use Test::More tests => 1;
5
6use Text::Wrap;
7
8local $Text::Wrap::columns = 15;
9local $Text::Wrap::separator2 = '[N]';
10
11is(wrap('','','some long text here that should be wrapped on at least three lines'),
12"some long text[N]here that[N]should be[N]wrapped on at[N]least three[N]lines",
13'If you just to preserve existing newlines but add new breaks with something else, set $Text::Wrap::separator2 instead.');
14