Acme-Sort-Bogosort
view release on metacpan or search on metacpan
Revision history for Perl module Acme::Sort::Bogosort
0.05 2012-11-02
- All my modules comply with CPAN::Changes::Spec,
including Acme::*
0.04 2011-08-21
- Added 'parent' as a dependency, and switched to
using old-style version numbers (v5.10 => 5.010)
for backward compatibility.
0.03 2011-08-20
- Added Try::Tiny as a dependency.
0.02 2011-08-19
- Fixed type on the POD synopsis.
- Changed from ACME:: namespace to Acme::
0.01 2011-08-18
t/pod-coverage.t view on Meta::CPAN
use warnings;
use Test::More;
# Ensure a recent version of Test::Pod::Coverage
my $min_tpc = 1.08;
eval "use Test::Pod::Coverage $min_tpc";
plan skip_all => "Test::Pod::Coverage $min_tpc required for testing POD coverage"
if $@;
# Test::Pod::Coverage doesn't require a minimum Pod::Coverage version,
# but older versions don't recognize some common documentation styles
my $min_pc = 0.18;
eval "use Pod::Coverage $min_pc";
plan skip_all => "Pod::Coverage $min_pc required for testing POD coverage"
if $@;
all_pod_coverage_ok( { private => [ qr/is_ordered/ ] } );
( run in 1.313 second using v1.01-cache-2.11-cpan-49f99fa48dc )