Remove auto_install for mbm as using git is 'too much yak hair'.
[p5sagit/namespace-clean.git] / t / lib / ExporterTest.pm
CommitLineData
40aef9d6 1package ExporterTest;
2use warnings;
3use strict;
4
5use base 'Exporter';
53e92ec5 6use vars qw( @EXPORT_OK $foo );
40aef9d6 7
53e92ec5 8$foo = 777;
9@EXPORT_OK = qw( $foo foo bar qux );
40aef9d6 10
11sub foo { 23 }
12sub bar { 12 }
53e92ec5 13sub qux { 17 }
40aef9d6 14
151;