projects
/
p5sagit/Sub-Exporter-Progressive.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
a5eab205aeed5ecf5d4aa9f4496c6a27e9f3ebac
[p5sagit/Sub-Exporter-Progressive.git]
/
t
/
lib
/
A
/
Junk.pm
1
package A::Junk;
2
3
use Sub::Exporter::Progressive -setup => {
4
exports => [qw(junk1 junk2 junk3)],
5
groups => {
6
default => ['junk2'],
7
other => ['junk3'],
8
},
9
};
10
11
sub junk1 { 1 }
12
sub junk2 { 1 }
13
sub junk3 { 1 }
14
15
1;