Simplify tests
[pod-constants.git] / t / Cheese.pm
CommitLineData
f46dd377 1package Cheese;
f46dd377 2use strict;
8d07cc75
MG
3use warnings;
4
5our ($foo, $quux);
6
7sub handle_bar {
8 print "GOT HERE\n";
9 eval 'use ReEntrancyTest';
10 print "GOT HERE TOO. \$\@ is `$@'\n";
11}
f46dd377 12
8d07cc75 13use Pod::Constants -debug => 1, -trim => 1, foo => \$foo, bar => \&handle_bar, quux => \$quux;
f46dd377
MG
14
15=head1 foo
16
17detcepxe
18
19=head1 bar
20
21=head2 quux
22
23Blah.
24
25=cut
26
271;
This page took 0.010628 seconds and 4 git commands to generate.