diff options
Diffstat (limited to 't')
-rw-r--r-- | t/02-synopsis.t | 18 | ||||
-rwxr-xr-x | t/10-pod.t (renamed from t/10-pod-coverage.t) | 0 |
2 files changed, 18 insertions, 0 deletions
diff --git a/t/02-synopsis.t b/t/02-synopsis.t new file mode 100644 index 0000000..3b5f0c8 --- /dev/null +++ b/t/02-synopsis.t @@ -0,0 +1,18 @@ +#!/usr/bin/env perl +use strict; +use warnings; + +use Test::More; + +eval "use Test::Synopsis"; + +if ($@) { + plan skip_all => 'Test::Synopsis required for testing'; +} +else { + plan tests => 1; +} + +for my $m (qw(lib/WWW/Efa.pm)) { + synopsis_ok($m); +} diff --git a/t/10-pod-coverage.t b/t/10-pod.t index 5fe4faa..5fe4faa 100755 --- a/t/10-pod-coverage.t +++ b/t/10-pod.t |