aboutsummaryrefslogtreecommitdiff
path: root/t/09linemon.t
blob: 1f1666a3df4205ed1271e7ed1a0ff440cec64961 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# -*- perl -*-

use lib 't', 'lib';

use strict;
use warnings;
use TestCapture;
use Test::More tests => 3;

our($catbin, $input, $content);

my @lines;

TestCapture({ argv => [$catbin, $input],
              stdout => sub { push @lines, shift } });

is($content, join('', @lines));

@lines = ();

TestCapture({ argv => [$catbin, '-l', 31, $input],
              stdout => sub { push @lines, shift } });

is_deeply(\@lines, ['CHAPTER I. Down the Rabbit-Hole']);

@lines = ();

TestCapture({ argv => [$catbin, '-l', 102, $input],
              stdout => sub { push @lines, shift } });

is_deeply(\@lines, [ "CHAPTER I. Down the Rabbit-Hole\n",
		     "\n",
		     'Alice was beginning to get very tired of sitting by her sister on the' ]);

    

Return to:

Send suggestions and report system problems to the System administrator.