Codebase list libtest-pod-perl / 1624808
Fix test on Pod::Simple 3.27. David E. Wheeler 11 years ago
2 changed file(s) with 8 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
00 Change log for Test::Pod
11
22 1.47
3 * Fixed failing test on Pod::Simple 3.27 and higher.
34
45 1.46 - 2013-02-16T19:46:17Z
56 * Fixed a crash when `all_pod_files_ok()` finds no files to test. Thanks
1616 ( Pod::Simple->VERSION == 3.24 ? (
1717 "$file (17): Expected text matching /\\s+[^\\*\\d]/ after '=item'",
1818 "$file (21): Expected text matching /\\s+[^\\*\\d]/ after '=item'",
19 "$file (32): You can't have =items (as at line 36) unless the first thing after the =over is an =item",
20 ) : Pod::Simple->VERSION >= 3.27 ? (
21 "$file (17): Expected text after =item, not a number",
22 "$file (21): Expected text after =item, not a number",
23 "$file (32): You can't have =items (as at line 36) unless the first thing after the =over is an =item",
24 "$file (32): =over without closing =back",
1925 ) : Pod::Simple->VERSION >= 3.25 ? (
2026 "$file (17): Expected text after =item, not a number",
2127 "$file (21): Expected text after =item, not a number",
28 "$file (32): You can't have =items (as at line 36) unless the first thing after the =over is an =item",
2229 ) : ()),
23 "$file (32): You can't have =items (as at line 36) unless the first thing after the =over is an =item",
2430 );
2531 test_test( "$file is bad" );