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