summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Friesel <derf@derf.homelinux.org>2009-07-04 00:58:31 +0200
committerDaniel Friesel <derf@derf.homelinux.org>2009-07-04 00:58:31 +0200
commitbb5f3ff85f26c51cd7552ba9b07f1d38e3e3dc05 (patch)
tree1566c09163da7a653a82ab3998bfff2e5c6adf4f
parente27ecc3ff502d386b282b19acda88900e090585b (diff)
Added POD validity tests
-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');