Skip Menu |

This queue is for tickets about the AI-NaiveBayes1 CPAN distribution.

Report information
The Basics
Id: 65685
Status: new
Priority: 0/
Queue: AI-NaiveBayes1

People
Owner: Nobody in particular
Requestors: MSTEVENS [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Unimportant
Broken in: 1.9
Fixed in: (no value)



Subject: Add pod tests
Proposed patch to add automated pod testing.
Subject: ai-naive-pod.patch
diff -urN AI-NaiveBayes1-1.9.orig/t/pod.t AI-NaiveBayes1-1.9/t/pod.t --- AI-NaiveBayes1-1.9.orig/t/pod.t 1970-01-01 01:00:00.000000000 +0100 +++ AI-NaiveBayes1-1.9/t/pod.t 2011-02-12 20:36:01.000000000 +0000 @@ -0,0 +1,8 @@ +#!/usr/bin/perl -w + +use strict; + +use Test::More; +eval "use Test::Pod 1.00"; +plan skip_all => "Test::Pod 1.00 required for testing POD" if $@; +all_pod_files_ok();