diff options
author | Lorry Tar Creator <lorry-tar-importer@lorry> | 2013-10-28 18:09:08 +0000 |
---|---|---|
committer | Lorry Tar Creator <lorry-tar-importer@lorry> | 2013-10-28 18:09:08 +0000 |
commit | 1f3ec55911f841590a62ed06becc2bd9131a5fc4 (patch) | |
tree | c5cc7c17e75fff9f97efbd575d464cb9da4f60e9 /t/basic.t | |
download | Sub-Exporter-Progressive-tarball-master.tar.gz |
Sub-Exporter-Progressive-0.001011HEADSub-Exporter-Progressive-0.001011master
Diffstat (limited to 't/basic.t')
-rw-r--r-- | t/basic.t | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/t/basic.t b/t/basic.t new file mode 100644 index 0000000..5a841d1 --- /dev/null +++ b/t/basic.t @@ -0,0 +1,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; |