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