[Jifty-commit] jifty branch, master, updated. jifty-1.10228-19-g4798467

Jifty commits jifty-commit at lists.jifty.org
Wed Apr 27 13:07:01 EDT 2011


The branch, master has been updated
       via  479846782d380a3a742befbd5860305ab9ba684c (commit)
      from  55297709ac159814645b89f17368f5ed737fb66c (commit)

Summary of changes:
 t/99-pod-spelling.t |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

- Log -----------------------------------------------------------------
commit 479846782d380a3a742befbd5860305ab9ba684c
Author: Shawn M Moore <sartak at bestpractical.com>
Date:   Mon Apr 25 16:36:58 2011 -0400

    Test::Spelling 0.12 comes with some improvements

diff --git a/t/99-pod-spelling.t b/t/99-pod-spelling.t
index bb7f9d9..ed58cbb 100644
--- a/t/99-pod-spelling.t
+++ b/t/99-pod-spelling.t
@@ -1,17 +1,17 @@
-#!/usr/bin/env perl -w
-
 use strict;
+use warnings;
+
 use Test::More;
-plan skip_all => "Spelling tests only run for authors" unless (-d 'inc/.author');
+BEGIN {
+    plan skip_all => "Spelling tests only run for authors"
+        unless -d 'inc/.author';
+}
 
 eval "use Test::Spelling 0.12";
 plan skip_all => "Test::Spelling 0.12 required for testing POD spelling" if $@;
 
 add_stopwords(<DATA>);
 
-local $ENV{LC_ALL} = 'C';
-set_spell_cmd('aspell list -l en');
-
 # ignore translations
 set_pod_file_filter(sub { shift !~ /_(de|ja|zhtw)\.pod$/ });
 

-----------------------------------------------------------------------


More information about the Jifty-commit mailing list