initial commit
[p5sagit/Sub-Exporter-Progressive.git] / t / sex.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' => { -as => 'junk' };
9
10 ok(main->can('junk'), 'sub renamed with Sub::Exporter');
11 ok($INC{'Sub/Exporter.pm'}, 'Sub::Exporter loaded');
12
13 done_testing;