|
Lines 1-22
Link Here
|
| 1 |
#!/usr/bin/env perl |
|
|
| 2 |
use strict; |
| 3 |
use warnings; |
| 4 |
|
| 5 |
=head2 pod_spell.t |
| 6 |
|
| 7 |
This test script attempts to spellcheck text in perl's POD |
| 8 |
documentation. |
| 9 |
|
| 10 |
You must have Test::Spelling installed. |
| 11 |
|
| 12 |
One good way to run this is with C<prove -v |
| 13 |
xt/author/pod_spell.t> |
| 14 |
|
| 15 |
=cut |
| 16 |
|
| 17 |
use Test::More; |
| 18 |
eval "use Test::Spelling"; |
| 19 |
plan skip_all => "Test::Spelling required for testing POD spelling" if $@; |
| 20 |
|
| 21 |
all_pod_files_spelling_ok(); |
| 22 |
|
| 23 |
- |