#!./perl
chdir 't';
}
$x = 'now is the time
for all good men
to come to.
!
';
$y = 'now is the time' . "\n" .
'for all good men' . "\n" .
'to come to.' . "\n\n\n!\n\n";
is($x, $y, 'test data is sane');
$z = '';
$z .= $_;
}
is($z, $y, 'basic multiline reading');