Version 0.17
[p5sagit/namespace-clean.git] / t / lib / CleaneeTarget.pm
CommitLineData
fcfe7810 1package CleaneeTarget;
2use strict;
3use warnings;
4
5sub AWAY { 23 };
6sub IGNORED { 27 };
7
8use CleaneeBridge;
9
10sub NOTAWAY { 17 };
11
12sub x_foo { 'XFOO' }
13sub x_bar { 'XBAR' }
14sub x_baz { 'XBAZ' }
15
16use CleaneeBridgeExplicit;
17
18sub d_foo { 7 }
19sub d_bar { 8 }
20sub d_baz { 9 }
21
22sub summary { [AWAY, IGNORED, NOTAWAY, x_foo, x_bar, x_baz, d_foo, d_bar, d_baz] }
23
24use CleaneeBridgeDirect;
25
261;