This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
vars very much has a test.
[perl5.git] / t / lib / FilterTest.pm
CommitLineData
59d0036e 1package FilterTest;
593fd89c
JH
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;