1use lib qw(t/lib);
2use strict;
3use Test::More;
4
5plan tests => 1;
6
7# Goal of these tests: confirm that Sub::Uplevel will work with Exporter's
8# import() function
9
10package main;
11require Importer;
12require Bar;
13Importer::import_for_me('Bar','func3');
14can_ok('main','func3');
15
16