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

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

some tests moved to xt/

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.