implemented -cleanee option plus an external callable remove_subroutines class method...
[p5sagit/namespace-clean.git] / t / lib / CleaneeBridge.pm
CommitLineData
fcfe7810 1package CleaneeBridge;
2use strict;
3use warnings;
4
5use namespace::clean ();
6
7sub import {
8 namespace::clean->import(
9 -cleanee => scalar(caller),
10 -except => 'IGNORED',
11 );
12}
13
141;