This is an automated email from the git hooks/post-receive script.

abe pushed a commit to annotated tag 2.006001
in repository libdist-zilla-plugin-test-podspelling-perl.

commit 97a1806d4eaa59d7a68355acaa354217e8a1eb55
Author: Caleb Cushing <xenoterrac...@gmail.com>
Date:   Sat Sep 7 02:56:17 2013 -0500

    stop depending on the hanekomu wordlist
    
    Signed-off-by: Caleb Cushing <xenoterrac...@gmail.com>
---
 dist.ini                                  | 1 -
 lib/Dist/Zilla/Plugin/Test/PodSpelling.pm | 4 ++--
 t/attributes.t                            | 8 ++++----
 3 files changed, 6 insertions(+), 7 deletions(-)

diff --git a/dist.ini b/dist.ini
index 687efff..b1abff5 100644
--- a/dist.ini
+++ b/dist.ini
@@ -8,7 +8,6 @@ copyright_holder = Caleb Cushing
 
 [Bootstrap::lib]
 [Prereqs]
-Pod::Wordlist::hanekomu = 0
 Test::Spelling          = 0.12
 
 [ReadmeFromPod]
diff --git a/lib/Dist/Zilla/Plugin/Test/PodSpelling.pm 
b/lib/Dist/Zilla/Plugin/Test/PodSpelling.pm
index 457bc0d..76649a3 100644
--- a/lib/Dist/Zilla/Plugin/Test/PodSpelling.pm
+++ b/lib/Dist/Zilla/Plugin/Test/PodSpelling.pm
@@ -19,7 +19,7 @@ sub mvp_multivalue_args { return ( qw( stopwords directories 
) ) }
 has wordlist => (
        is      => 'ro',
        isa     => 'Str',
-       default => 'Pod::Wordlist::hanekomu',    # default to original
+       default => 'Pod::Wordlist',
 );
 
 has spell_cmd => (
@@ -164,7 +164,7 @@ C<bin> and C<lib> are set by default.
 The module name of a word list you wish to use that works with
 L<Test::Spelling>.
 
-Defaults to L<Pod::Wordlist::hanekomu>.
+Defaults to L<Pod::Wordlist>.
 
 =attr spell_cmd
 
diff --git a/t/attributes.t b/t/attributes.t
index ac17aba..b1e8710 100644
--- a/t/attributes.t
+++ b/t/attributes.t
@@ -38,14 +38,14 @@ sub get_content {
 }
 
 my $content = get_content({});
-  like $content, qr/Pod::Wordlist::hanekomu/, q[use default wordlist];
-unlike $content, qr/set_spell_cmd/,               q[by default don't set spell 
command];
+  like $content, qr/Pod::Wordlist/, q[use default wordlist];
+unlike $content, qr/set_spell_cmd/, q[by default don't set spell command];
   like $content, qr/add_stopwords/,               q[by default we add 
stopwords];
   like $content, qr/__DATA__\s$fname\n$lname/,    q[DATA handle includes 
author];
 
 $content = get_content({wordlist => 'Foo::Bar'});
-unlike $content, qr/Pod::Wordlist::hanekomu/, q[custom word list];
-  like $content, qr/Foo::Bar/,                q[custom word list];
+unlike $content, qr/Pod::Wordlist/, q[custom word list];
+  like $content, qr/Foo::Bar/,      q[custom word list];
 
 $content = get_content({spell_cmd => 'all_wrong'});
   like $content, qr/set_spell_cmd.+all_wrong/,    q[custom spell checker];

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libdist-zilla-plugin-test-podspelling-perl.git

_______________________________________________
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits

Reply via email to