App-Nag
view release on metacpan or search on metacpan
---
abstract: 'send yourself a reminder'
author:
- 'David F. Houghton <dfhoughton@gmail.com>'
build_requires:
Test::Fatal: 0
Test::More: 0
configure_requires:
ExtUtils::MakeMaker: 6.31
dynamic_config: 0
generated_by: 'Dist::Zilla version 4.200004, CPAN::Meta::Converter version 2.110420'
license: perl
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
version: 1.4
name: App-Nag
Makefile.PL view on Meta::CPAN
use ExtUtils::MakeMaker 6.31;
my %WriteMakefileArgs = (
'ABSTRACT' => 'send yourself a reminder',
'AUTHOR' => 'David F. Houghton <dfhoughton@gmail.com>',
'BUILD_REQUIRES' => {
'Test::Fatal' => '0',
'Test::More' => '0'
},
'CONFIGURE_REQUIRES' => {
'ExtUtils::MakeMaker' => '6.31'
},
'DISTNAME' => 'App-Nag',
'EXE_FILES' => [
'bin/nag',
'bin/nag'
],
t/arg_validation.t view on Meta::CPAN
#!/usr/bin/perl
use Modern::Perl;
use App::Nag;
use DateTime;
use DateTime::TimeZone;
use Test::More;
use Test::Fatal;
# this all could be cleaned up a bit
my (
$opt, $usage, $name, $verbosity, $text,
$synopsis, $seconds, $time, $true_seconds
);
local @ARGV;
subtest '1s delta' => sub {
( run in 1.156 second using v1.01-cache-2.11-cpan-54e63673c56 )