summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtest/simplestore.t5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/simplestore.t b/test/simplestore.t
index 9c16f84..3c35f83 100755
--- a/test/simplestore.t
+++ b/test/simplestore.t
@@ -1,11 +1,14 @@
#!/usr/bin/env perl
use strict;
use warnings;
-use Test::More tests => 7;
+use Pod::Checker;
+use Test::More tests => 8;
my $testfile = "/tmp/simplestore-test-$$";
my $hash;
+is(podchecker('lib/Simplestore.pm'), 0, "Valid POD");
+
BEGIN {use_ok('Simplestore')}
require_ok('Simplestore');