blob: ef89a0705b3f20e513755618ee62641d6f4c3e78 (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
#!perl -w
BEGIN {
chdir 't' if -d 't';
@INC = '../lib';
}
# Can't use Test.pm, that's a 5.005 thing.
print "1..3\n";
my $test_num = 1;
# Utility testing functions.
sub ok ($;$) {
my($test, $name) = @_;
my $ok = '';
$ok .= "not " unless $test;
$ok .= "ok $test_num";
$ok .= " - $name" if defined $name;
$ok .= "\n";
print $ok;
$test_num++;
}
use Test::Builder;
my $Test = Test::Builder->new();
my $result;
my $out = $Test->output('foo');
ok( defined $out );
print $out "hi!\n";
close *$out;
undef $out;
open(IN, 'foo') or die $!;
chomp(my $line = <IN>);
ok($line eq 'hi!');
open(FOO, ">>foo") or die $!;
$out = $Test->output(\*FOO);
$old = select *$out;
print "Hello!\n";
close *$out;
undef $out;
select $old;
open(IN, 'foo') or die $!;
my @lines = <IN>;
close IN;
ok($lines[1] =~ /Hello!/);
unlink('foo');
|