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
|
#!/usr/bin/perl -w
# t/for.t - check PseudoPod for blocks
BEGIN {
chdir 't' if -d 't';
}
use strict;
use lib '../lib';
use Test::More tests => 8;
use_ok('Pod::PseudoPod::HTML') or exit;
my ($parser, $results);
initialize($parser, $results);
$parser->parse_string_document(<<'EOPOD');
=for editor
This is an ordinary for with no end directive.
EOPOD
is($results, <<'EOHTML', "a simple for");
<p>This is an ordinary for with no end directive.</p>
EOHTML
initialize($parser, $results);
$parser->parse_string_document(<<'EOPOD');
=for editor
This is a PseudoPod for with an end directive.
=end
EOPOD
is($results, <<'EOHTML', "a for with an '=end' directive");
<p>This is a PseudoPod for with an end directive.</p>
EOHTML
initialize($parser, $results);
$parser->parse_string_document(<<'EOPOD');
=for editor
This is a PseudoPod for with an end for directive.
=end for
EOPOD
is($results, <<'EOHTML', "a for with an '=end for' directive");
<p>This is a PseudoPod for with an end for directive.</p>
EOHTML
initialize($parser, $results);
$parser->add_css_tags(1);
$parser->parse_string_document(<<'EOPOD');
=for editor
This is a PseudoPod for with css tags turned on.
=end
EOPOD
is($results, <<'EOHTML', "an ended for with css tags");
<div class="editor">
<p>This is a PseudoPod for with css tags turned on.</p>
</div>
EOHTML
initialize($parser, $results);
$parser->parse_string_document(<<'EOPOD');
=for author
This is a PseudoPod for with an end directive.
=end
EOPOD
is($results, <<'EOHTML', "author for");
<p>This is a PseudoPod for with an end directive.</p>
EOHTML
initialize($parser, $results);
$parser->parse_string_document(<<'EOPOD');
=for production
This is a PseudoPod for with an end directive.
=end
EOPOD
is($results, <<'EOHTML', "production for");
<p>This is a PseudoPod for with an end directive.</p>
EOHTML
initialize($parser, $results);
$parser->parse_string_document(<<'EOPOD');
=for ignore
This is a PseudoPod for with an end directive.
=end
EOPOD
is($results, '', "for with 'ignore' target is always ignored");
######################################
sub initialize {
$_[0] = Pod::PseudoPod::HTML->new ();
$_[0]->output_string( \$results ); # Send the resulting output to a string
$_[1] = '';
return;
}
|