root/lang/perl/Sledge-Plugin-Inflate/trunk/t/spelling.t @ 13998

Revision 13998, 286 bytes (checked in by tokuhirom, 5 years ago)

r3490@gp (orig r140): tokuhiro | 2006-10-26 13:05:08 +0900

r4087@toco: tokuhiro | 2006-10-26 13:04:29 +0900
initial import

Line 
1use strict;
2use warnings;
3use Test::More;
4BEGIN {
5    eval q[use Test::Spelling];
6    plan(skip_all => "Test::Spelling required for testing spelling") if $@;
7}
8
9my @stopwords = split /\n/, <<'EOF';
10Tokuhiro
11Matsuno
12IP
13ip
14yaml
15EOF
16
17add_stopwords(@stopwords);
18all_pod_files_spelling_ok;
19
Note: See TracBrowser for help on using the browser.