This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
integrate cfgperl contents into mainline
[perl5.git] / t / pod / multiline_items.t
1 #!./perl
2 BEGIN {
3    chdir 't' if -d 't';
4    unshift @INC, './pod', '../lib';
5    require "testp2pt.pl";
6    import TestPodIncPlainText;
7 }
8
9 my %options = map { $_ => 1 } @ARGV;  ## convert cmdline to options-hash
10 my $passed  = testpodplaintext \%options, $0;
11 exit( ($passed == 1) ? 0 : -1 )  unless $ENV{HARNESS_ACTIVE};
12
13
14 __END__
15
16
17 =head1 Test multiline item lists
18
19 This is a test to ensure that multiline =item paragraphs
20 get indented appropriately.
21
22 =over 4 
23
24 =item This 
25 is
26 a
27 test.
28
29 =back
30
31 =cut