diff options
Diffstat (limited to 't/fmt-pod.t')
-rw-r--r-- | t/fmt-pod.t | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/t/fmt-pod.t b/t/fmt-pod.t new file mode 100644 index 0000000..631ecd5 --- /dev/null +++ b/t/fmt-pod.t @@ -0,0 +1,22 @@ +#! /usr/bin/perl +# config file tester. + +######################### + +use strict; +use warnings; + +use lib q(t); +use Testhelper; + +my @tests; +push @tests, { + 'doc' => 'Basic testing of POD constructs', + 'format' => 'pod', + 'input' => 'fmt/pod/basic.pod', + +}; + +run_all_tests(@tests); + +0; |