summaryrefslogtreecommitdiff
path: root/t/lib/A/JunkAll.pm
diff options
context:
space:
mode:
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;