summaryrefslogtreecommitdiff
path: root/t/lib/A/JunkAll.pm
diff options
context:
space:
mode:
authorLorry Tar Creator <lorry-tar-importer@lorry>2013-10-28 18:09:08 +0000
committerLorry Tar Creator <lorry-tar-importer@lorry>2013-10-28 18:09:08 +0000
commit1f3ec55911f841590a62ed06becc2bd9131a5fc4 (patch)
treec5cc7c17e75fff9f97efbd575d464cb9da4f60e9 /t/lib/A/JunkAll.pm
downloadSub-Exporter-Progressive-tarball-1f3ec55911f841590a62ed06becc2bd9131a5fc4.tar.gz
Sub-Exporter-Progressive-0.001011HEADSub-Exporter-Progressive-0.001011master
Diffstat (limited to 't/lib/A/JunkAll.pm')
-rw-r--r--t/lib/A/JunkAll.pm13
1 files changed, 13 insertions, 0 deletions
diff --git a/t/lib/A/JunkAll.pm b/t/lib/A/JunkAll.pm
new file mode 100644
index 0000000..d3e6123
--- /dev/null
+++ b/t/lib/A/JunkAll.pm
@@ -0,0 +1,13 @@
+package A::JunkAll;
+
+use Sub::Exporter::Progressive -setup => {
+ exports => [qw(junk1 junk2)],
+ groups => {
+ default => [ -all ],
+ },
+};
+
+sub junk1 { 1 }
+sub junk2 { 1 }
+
+1;