Data-Printer-Theme-Zellner
view release on metacpan or search on metacpan
}
},
"runtime" : {
"requires" : {
"Data::Printer" : "0",
"perl" : "5.018000"
}
},
"test" : {
"requires" : {
"Test::Fatal" : "0",
"Test::Simple" : "0.88",
"Test::Warnings" : "0"
}
}
},
"release_status" : "stable",
"resources" : {
"bugtracker" : {
"web" : "https://github.com/abeltje/Data-Printer-Theme-Zellner/issues"
},
---
abstract: 'A L<Data::Printer> theme based on vims Zellner colors.'
author:
- 'Abe Timmerman <abeltje@cpan.org>'
build_requires:
ExtUtils::MakeMaker: '6.64'
Test::Fatal: '0'
Test::Simple: '0.88'
Test::Warnings: '0'
configure_requires:
ExtUtils::MakeMaker: '0'
dynamic_config: 1
generated_by: 'ExtUtils::MakeMaker version 7.70, CPAN::Meta::Converter version 2.150010'
license: perl
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
version: '1.4'
Makefile.PL view on Meta::CPAN
AUTHOR => 'Abe Timmerman <abeltje@cpan.org>',
LICENSE => 'perl_5',
MIN_PERL_VERSION => '5.18.0',
BUILD_REQUIRES => {
'ExtUtils::MakeMaker' => 6.64,
},
TEST_REQUIRES => {
'Test::Simple' => 0.88,
'Test::Warnings' => 0,
'Test::Fatal' => 0,
},
PREREQ_PM => {
'Data::Printer' => 0,
},
META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
repository => {
type => 'git',
t/Test/abeltje.pm view on Meta::CPAN
use v5.10.1;
use warnings;
use strict;
our $VERSION = "1.09";
use parent 'Test::Builder::Module';
use Test::Builder::Module;
use Test::More;
use Test::Fatal qw( exception success dies_ok lives_ok );
use Test::Warnings qw( :all );
our @EXPORT = (
'abeltje_done_testing',
@Test::More::EXPORT,
@Test::Fatal::EXPORT_OK,
@Test::Warnings::EXPORT_OK
);
sub import_extra {
# use Test::Warnings 'warnings' interferes
# with warnings->import()
warnings::import('warnings');
strict->import();
require feature;
t/Test/abeltje.pm view on Meta::CPAN
# Don't forget -I. on the shebang line
# this is where you have your Fav. test-routines.
abeltje_done_testing();
=head1 DESCRIPTION
Mostly nicked from other modules (like L<Modern::Perl>)...
This gives you L<Test::More>, L<Test::Fatal>, L<Test::Warnings> and also imports
for you: L<strict>, L<warnings>, the L<feature> with the C<:5.10> tag and L<lib>
with the C<t/lib> path.
=head2 abeltje_done_testing
Just for fun, an alias for L<Test::More/done_testing()>.
=head2 import_extra
This module works by the use of L<Test::Builder::Module/import_extra()>.
( run in 2.840 seconds using v1.01-cache-2.11-cpan-54e63673c56 )