More leniency to the \p and \P: now can have whitespace
[p5sagit/p5-mst-13.2.git] / t / lib / FilterTest.pm
CommitLineData
59d0036e 1package FilterTest;
593fd89c 2
3BEGIN {
4 chdir('t') if -d 't';
5 @INC = '../lib';
6}
7
8use Filter::Simple sub {
9 while (my ($from, $to) = splice @_, 0, 2) {
10 s/$from/$to/g;
11 }
12};
13
141;