This is an automated email from the git hooks/post-receive script. abe pushed a commit to annotated tag 2.001003 in repository libdist-zilla-plugin-test-podspelling-perl.
commit 0aae1a713622979a8a024a0aa8bf6d7d3c802748 Author: Caleb Cushing <[email protected]> Date: Sat Dec 10 23:01:23 2011 -0600 skip test if OS is bsd Signed-off-by: Caleb Cushing <[email protected]> --- t/checked.t | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/t/checked.t b/t/checked.t index f8ed386..5738ef5 100644 --- a/t/checked.t +++ b/t/checked.t @@ -10,8 +10,15 @@ use Path::Class; use Cwd (); BEGIN { + use English; + plan skip_all => 'No working spellchecker found' unless has_working_spellchecker; + + plan skip_all => 'This Test has problems on BSD... patches welcome' + if $OSNAME =~ m/bsd/i; + + no English; } ok( has_working_spellchecker, 'test has working spellchecker' ); -- 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 [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits
