fix non-ANSI C++-style comment
[p5sagit/p5-mst-13.2.git] / lib / Test / t / todo.t
CommitLineData
809908f7 1# -*-perl-*-
2use strict;
711cdd39 3use Test qw(:DEFAULT $TESTOUT $TESTERR $ntest);
809908f7 4
edd5bad5 5### This test is crafted in such a way as to prevent Test::Harness from
6### seeing the todo tests, otherwise you get people sending in bug reports
7### about Test.pm having "UNEXPECTEDLY SUCCEEDED" tests.
8
9open F, ">todo";
10$TESTOUT = *F{IO};
711cdd39 11$TESTERR = *F{IO};
edd5bad5 12
13my $tests = 5;
14plan tests => $tests, todo => [2..$tests];
15
16# line 11
17ok(1);
809908f7 18ok(1);
19ok(0,1);
20ok(0,1,"need more tuits");
21ok(1,1);
edd5bad5 22
23close F;
24$TESTOUT = *STDOUT{IO};
711cdd39 25$TESTERR = *STDERR{IO};
edd5bad5 26$ntest = 1;
27
28open F, "todo";
29my $out = join '', <F>;
30close F;
31unlink "todo";
32
33my $expect = <<"EXPECT";
341..5 todo 2 3 4 5;
35ok 1
36ok 2 # ($0 at line 12 TODO?!)
37not ok 3
38# Test 3 got: '0' ($0 at line 13 *TODO*)
39# Expected: '1'
40not ok 4
41# Test 4 got: '0' ($0 at line 14 *TODO*)
42# Expected: '1' (need more tuits)
43ok 5 # ($0 at line 15 TODO?!)
44EXPECT
45
46
47print "1..1\n";
48ok( $out, $expect );