Import namespace-clean-0.04.tar.gz.
[p5sagit/namespace-clean.git] / t / lib / FunctionWipeout.pm
index e788a2b..766cec2 100644 (file)
@@ -2,11 +2,11 @@ package FunctionWipeout;
 use warnings;
 use strict;
 
-use ExporterTest qw(foo);
+use ExporterTest qw( foo qux $foo );
 
 sub bar { foo() }
 
-use namespace::clean;
+use namespace::clean -except => [qw( qux )];
 
 sub baz { bar() }