This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Move Text::Tabs/Text::Wrap from lib to ext
[perl5.git] / ext / Text-Tabs / t / wrap_separator2.t
CommitLineData
69e34dac
S
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.');