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