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 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324
|
BEGIN {
use File::Basename;
my $THISDIR = dirname $0;
unshift @INC, $THISDIR;
require "testpchk.pl";
import TestPodChecker;
}
my %options = map { $_ => 1 } @ARGV; ## convert cmdline to options-hash
my $passed = testpodchecker \%options, $0;
exit( ($passed == 1) ? 0 : -1 ) unless $ENV{HARNESS_ACTIVE};
### Deliberately throw in some blank but non-empty lines
### The above line should contain spaces
#line 18
__END__
=head2 This should cause a warning
=head1 NAME
poderrors.t - test Pod::Checker on some pod syntax errors
GASP! A verbatim paragraph in NAME
=unknown1 this is an unknown command with two N<unknownA>
and D<unknownB> interior sequences.
This is some paragraph text with some unknown interior sequences,
such as Q<unknown2>,
A<unknown3>,
and Y<unknown4 V<unknown5>>.
Now try some unterminated sequences like
I<hello mudda!
B<hello fadda!
Here I am at C<camp granada!
Camps is very,
entertaining.
And they say we'll have some fun if it stops raining!
Okay, now use a non-empty blank line to terminate a paragraph and make
sure we get a warning.
The above blank line contains tabs and spaces only
F<Many B<fcodes B<inside C<other I<fcodes F<inside I<many S<many C<more X<fcodes. S<This is X<ridiculous.>>>>>>>>>>>>
A L<link|perlvar/$/> to L<perlvar/$E<sol>>
=head1 Additional tests
=head2 item without over
=item oops
=head2 back without over
=back
=head2 over without back
=over 4
=item aaps
=head2 end without begin
=end
=end something
=head2 begin and begin
=begin html
=begin text
=end text
=end html
=head2 begin w/o formatter
=begin
=end
=head2 for w/o formatter
=for
something...
=head2 Nested sequences of the same type
C<code I<italic C<code again!>>>
=head2 Garbled entities
E<alea iacta est>
E<C<auml>>
E<abcI<bla>>
E<0x100>
E<07777>
E<300>
E<unknown_entity>
=head2 Unresolved internal links
L</"begin or begin">
L<"end with begin">
L</OoPs>
=head2 Some links with problems
L<abc
def>
L<>
L< aha>
L<oho >
L< weehee >
L<"Warnings"> this one is ok
L</unescaped> ok too, this POD has an X of the same name
L<< lead >>
L<< trail >>
L<< neither >>
L<<< both >>>
L<<<<>>>>
L<<<< >>>>
L<<<< >>>>
=head2 Warnings
L<passwd(5)>
L<some text with / in it|perlvar/$|> should give warnings as hell
=over 4
=item bla
=back 200
the 200 is evil
X<unescaped>see these unescaped < and > in the text?
=head2 Misc
Z<ddd> should be empty
X<> should not be empty
X<0> should not generate a warning about being empty
E<> should not be empty
=over four
This paragrapgh is misplaced - it ought to be an item.
=item four should be numeric!
=back
=over 4
=item
=item blah
=item previous is all empty!!!
=back
=over
This verbatim paragraph should not be here. Spaces are on the line below this
=item *
bullet
=item 1
number, uh oh
=back
=over
=item *
first bullet
=item 1
then number
=item finally definition
=back
=over
=item 1
first number
=item 3
bad numbering
=item then definition
=item *
finally bullet
=back
=over
=item first defintion
=item *
then bullet
=item 1
finally number
=item second definition
This should not generate an empty =item warning,
because it has verbatim text.
=back
Empty over/back:
=over 4
=over 2
=back
=back
item w/o name
=cut
=pod bla
bla is evil
=cut blub
blub is evil
=head2 reoccurence
=over 4
=item Misc
we already have a head Misc
=back
=head2 some heading
=head2 another one
previous section is empty!
=head1 LINK TESTS
L<perlop/"I/O Operators">
don't trigger a warning because node is quoted
L<"I/O Operators">
incorrectly interpreted as 'O Operators in I', but this is deprecated syntax, as per perlpodspec.
no warning due to quotes
=head1
Empty head above and unclosed over/begins below
=head3 test X<stuff> I<test>
=over
=begin html
What?
=begin :xml
L<This pod's NAME in a link means it is internal|poderrors.t/link_to_nowhere>,
so should generate a warning
=cut
|