summaryrefslogtreecommitdiff
path: root/t/basic.t
blob: 5a841d1d386ea1e8badaf00f08ea43176b8cf154 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13

use strict;
use warnings;

use Test::More;
use List::Util 'first';
use lib 't/lib';
use A::Junk 'junk1';

ok(main->can('junk1'), 'requested sub exported');
ok(! $INC{'Sub/Exporter.pm'}, 'Sub::Exporter not loaded');

done_testing;