summaryrefslogtreecommitdiff
path: root/t/lib/A/Junk.pm
diff options
context:
space:
mode:
Diffstat (limited to 't/lib/A/Junk.pm')
-rw-r--r--t/lib/A/Junk.pm15
1 files changed, 15 insertions, 0 deletions
diff --git a/t/lib/A/Junk.pm b/t/lib/A/Junk.pm
new file mode 100644
index 0000000..a5eab20
--- /dev/null
+++ b/t/lib/A/Junk.pm
@@ -0,0 +1,15 @@
+package A::Junk;
+
+use Sub::Exporter::Progressive -setup => {
+ exports => [qw(junk1 junk2 junk3)],
+ groups => {
+ default => ['junk2'],
+ other => ['junk3'],
+ },
+};
+
+sub junk1 { 1 }
+sub junk2 { 1 }
+sub junk3 { 1 }
+
+1;