incorrectly failing test in lib/Pod/t/text.t
[p5sagit/p5-mst-13.2.git] / lib / Pod / t / text.t
1 #!/usr/bin/perl -w
2 #
3 # text.t -- Additional specialized tests for Pod::Text.
4 #
5 # Copyright 2002, 2004, 2006, 2007 by Russ Allbery <rra@stanford.edu>
6 #
7 # This program is free software; you may redistribute it and/or modify it
8 # under the same terms as Perl itself.
9
10 BEGIN {
11     chdir 't' if -d 't';
12     if ($ENV{PERL_CORE}) {
13         @INC = '../lib';
14     } else {
15         unshift (@INC, '../blib/lib');
16     }
17     unshift (@INC, '../blib/lib');
18     $| = 1;
19     print "1..4\n";
20 }
21
22 END {
23     print "not ok 1\n" unless $loaded;
24 }
25
26 use Pod::Text;
27 use Pod::Simple;
28
29 $loaded = 1;
30 print "ok 1\n";
31
32 my $parser = Pod::Text->new or die "Cannot create parser\n";
33 my $n = 2;
34 while (<DATA>) {
35     next until $_ eq "###\n";
36     open (TMP, '> tmp.pod') or die "Cannot create tmp.pod: $!\n";
37     while (<DATA>) {
38         last if $_ eq "###\n";
39         print TMP $_;
40     }
41     close TMP;
42     open (OUT, '> out.tmp') or die "Cannot create out.tmp: $!\n";
43     $parser->parse_from_file ('tmp.pod', \*OUT);
44     close OUT;
45     open (TMP, 'out.tmp') or die "Cannot open out.tmp: $!\n";
46     my $output;
47     {
48         local $/;
49         $output = <TMP>;
50     }
51     close TMP;
52     unlink ('tmp.pod', 'out.tmp');
53     my $expected = '';
54     while (<DATA>) {
55         last if $_ eq "###\n";
56         $expected .= $_;
57     }
58     if ($output eq $expected) {
59         print "ok $n\n";
60     } else {
61         print "not ok $n\n";
62         print "Expected\n========\n$expected\nOutput\n======\n$output\n";
63     }
64     $n++;
65 }
66
67 # Below the marker are bits of POD and corresponding expected text output.
68 # This is used to test specific features or problems with Pod::Text.  The
69 # input and output are separated by lines containing only ###.
70
71 __DATA__
72
73 ###
74 =head1 PERIODS
75
76 This C<.> should be quoted.
77 ###
78 PERIODS
79     This "." should be quoted.
80
81 ###
82
83 ###
84 =head1 CE<lt>E<gt> WITH SPACES
85
86 What does C<<  this.  >> end up looking like?
87 ###
88 C<> WITH SPACES
89     What does "this." end up looking like?
90
91 ###
92
93 ###
94 =head1 Test of SE<lt>E<gt>
95
96 This is some S<  > whitespace.
97 ###
98 Test of S<>
99     This is some    whitespace.
100
101 ###
102 ==