Re: pod/pod2usage2.t
[p5sagit/p5-mst-13.2.git] / t / lib / Filter / Simple / ExportTest.pm
CommitLineData
1b629f66 1package Filter::Simple::ExportTest;
255c1263 2
3use Filter::Simple;
4use base Exporter;
5
6@EXPORT_OK = qw(ok);
7
8FILTER { s/not// };
9
10sub ok { print "ok @_\n" }
11
121;