summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorKarel Miko <karel.miko@gmail.com>2016-05-03 23:50:22 +0200
committerKarel Miko <karel.miko@gmail.com>2016-05-03 23:50:47 +0200
commit82e9371dc4f76a68747db1dbd7035f4eaa694b33 (patch)
treee1dc13ae8bb422d11e60b47f02a63a081006cb02 /t
parentcb7792bf560bdc3b8cfb445b8a360903be790a00 (diff)
new Crypt::Checksum, Crypt::Checksum::CRC32, Crypt::Checksum::Adler32
Diffstat (limited to 't')
-rw-r--r--t/001_compile.t3
-rw-r--r--t/003_all_pm_pod.t2
2 files changed, 4 insertions, 1 deletions
diff --git a/t/001_compile.t b/t/001_compile.t
index 83b115ab..0795acfe 100644
--- a/t/001_compile.t
+++ b/t/001_compile.t
@@ -64,6 +64,9 @@ use Crypt::PK::RSA;
use Crypt::PK::DSA;
use Crypt::PK::ECC;
use Crypt::PK::DH;
+use Crypt::Checksum;
+use Crypt::Checksum::Adler32;
+use Crypt::Checksum::CRC32;
ok 1, 'All modules loaded successfully';
$ok = 1;
diff --git a/t/003_all_pm_pod.t b/t/003_all_pm_pod.t
index e13ff1e5..79d2887e 100644
--- a/t/003_all_pm_pod.t
+++ b/t/003_all_pm_pod.t
@@ -5,7 +5,7 @@ use Test::More;
plan skip_all => "File::Find not installed" unless eval { require File::Find };
plan skip_all => "Test::Pod not installed" unless eval { require Test::Pod };
-plan tests => 74;
+plan tests => 77;
my @files;
File::Find::find({ wanted=>sub { push @files, $_ if /\.pm$/ }, no_chdir=>1 }, 'lib');