Re: pod/pod2usage2.t
[p5sagit/p5-mst-13.2.git] / t / lib / Filter / Simple / FilterOnlyTest.pm
CommitLineData
1b629f66 1package Filter::Simple::FilterOnlyTest;
255c1263 2
3use Filter::Simple;
4
5FILTER_ONLY
6 string => sub {
7 my $class = shift;
8 while (my($pat, $str) = splice @_, 0, 2) {
9 s/$pat/$str/g;
10 }
11 };