Acme-DonMartin

 view release on metacpan or  search on metacpan

README  view on Meta::CPAN

make test
make install

PREREQUISITES

This module requires the following module:

    Compress::Zlib

The following modules are advised for full testing, but are
not required:

    use File::Copy (normally available, since it is in the core)
    use Test::Cmd
    use Test::Pod
    use Test::Pod::Coverage

BASIC USAGE

    use Acme::DonMartin;
    print "hello, world\n";

t/01-basic.t  view on Meta::CPAN

	if (0) {
		eval 'use Test::Cmd';
		eval 'use Test::File::Contents';
		eval 'use File::Copy';
	}
}

SKIP: {
	if (%fail) {
		diag( "$_ not found" ) for sort keys %fail;
		skip( "Not all modules required for testing were found, skipping encode/decode tests", 4 );
	}

    copy('eg/freq.orig', 'freq.pl') or
		skip( "Unable to prepare test file: $!", 4 );

	my $t = Test::Cmd->new(
        interpreter => $^X,
		prog        => 'eg/freq.pl',
		workdir     => '',
		subdir      => 'sub',



( run in 0.414 second using v1.01-cache-2.11-cpan-0a6323c29d9 )