projects
/
p5sagit/Sub-Exporter-Progressive.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Release commit for 0.001011
[p5sagit/Sub-Exporter-Progressive.git]
/
t
/
basic.t
1
2
use strict;
3
use warnings;
4
5
use Test::More;
6
use List::Util 'first';
7
use lib 't/lib';
8
use A::Junk 'junk1';
9
10
ok(main->can('junk1'), 'requested sub exported');
11
ok(! $INC{'Sub/Exporter.pm'}, 'Sub::Exporter not loaded');
12
13
done_testing;