Acme-Archive-Mbox

 view release on metacpan or  search on metacpan

META.yml  view on Meta::CPAN

name:         Acme-Archive-Mbox
version:      0.01
version_from: lib/Acme/Archive/Mbox.pm
installdirs:  site
requires:
    File::Path:                    0
    File::Slurp:                   0
    File::Spec:                    0
    File::Temp:                    0
    Mail::Box:                     0
    Test::More:                    0

distribution_type: module
generated_by: ExtUtils::MakeMaker version 6.30_01

Makefile.PL  view on Meta::CPAN

    AUTHOR              => 'Ian Kilgore <iank@cpan.org>',
    VERSION_FROM        => 'lib/Acme/Archive/Mbox.pm',
    ABSTRACT_FROM       => 'lib/Acme/Archive/Mbox.pm',
    ($ExtUtils::MakeMaker::VERSION >= 6.3002
      ? ('LICENSE'=> 'perl')
      : ()),
    PL_FILES            => {},
    EXE_FILES           => [ 'bin/mboxify',
                             'bin/mboxextract' ],
    PREREQ_PM => {
        'Test::More' => 0,
        'Mail::Box'  => 0,
        'File::Spec' => 0,
        'File::Path' => 0,
        'File::Temp' => 0,
        'File::Slurp' => 0,
    },
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'Acme-Archive-Mbox-*' },
);

t/00-load.t  view on Meta::CPAN

#!perl -T

use Test::More tests => 1;

BEGIN {
	use_ok( 'Acme::Archive::Mbox' );
}

diag( "Testing Acme::Archive::Mbox $Acme::Archive::Mbox::VERSION, Perl $], $^X" );

t/archive.t  view on Meta::CPAN

#!perl -T

use Test::More tests => 15;
use strict;

use Acme::Archive::Mbox;
use File::Temp qw/ :POSIX /;

# new
my $archive = Acme::Archive::Mbox->new();
isa_ok($archive, 'Acme::Archive::Mbox', 'Object created');

# add_data and add_file

t/file.t  view on Meta::CPAN

#!perl -T

use Test::More tests => 8;
use strict;

use Acme::Archive::Mbox::File;

my $time = time();
my $name = '/a/b//c';
my $contents = 'a'x20;
my %attr = ( mode => 0644,
             uid  => 1000,
             gid  => 1001,

t/pod-coverage.t  view on Meta::CPAN

use strict;
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();

t/pod.t  view on Meta::CPAN

#!perl -T

use strict;
use warnings;
use Test::More;

# Ensure a recent version of Test::Pod
my $min_tp = 1.22;
eval "use Test::Pod $min_tp";
plan skip_all => "Test::Pod $min_tp required for testing POD" if $@;

all_pod_files_ok();

 view all matches for this distribution
 view release on metacpan -  search on metacpan

( run in 1.484 second using v1.00-cache-2.02-grep-82fe00e-cpan-585fae043c8 )