diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2017-10-28 01:11:55 +0200 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2017-10-28 01:15:31 +0200 |
commit | 3daaf5fd9449b35ce0210ec391c002a75c50a2c7 (patch) | |
tree | a8630ded7b7349a3a5365859ceceb7c829bd8a99 /t | |
parent | 7c37762d92d36e0bb5195e62b45dea9f97e8900e (diff) | |
download | perl-MDK-Common-3daaf5fd9449b35ce0210ec391c002a75c50a2c7.tar perl-MDK-Common-3daaf5fd9449b35ce0210ec391c002a75c50a2c7.tar.gz perl-MDK-Common-3daaf5fd9449b35ce0210ec391c002a75c50a2c7.tar.bz2 perl-MDK-Common-3daaf5fd9449b35ce0210ec391c002a75c50a2c7.tar.xz perl-MDK-Common-3daaf5fd9449b35ce0210ec391c002a75c50a2c7.zip |
add minimal tests
Diffstat (limited to 't')
-rw-r--r-- | t/01compile.t | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/t/01compile.t b/t/01compile.t new file mode 100644 index 0000000..7ba05ce --- /dev/null +++ b/t/01compile.t @@ -0,0 +1,10 @@ +#!/usr/bin/perl +# $Id$ + +use Test::More tests => 3; + +use_ok('MDK::Common'); +can_ok('MDK::Common', qw(if_ member uniq)); + +# System +can_ok('MDK::Common::System', qw(arch fuzzy_pidofs list_home)); |