Business-IBAN-Validator

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

   "name" : "Business-IBAN-Validator",
   "no_index" : {
      "directory" : [
         "t",
         "inc"
      ]
   },
   "prereqs" : {
      "build" : {
         "requires" : {
            "Test::Fatal" : "0",
            "Test::Simple" : "0.88",
            "Test::Warnings" : "0"
         }
      },
      "configure" : {
         "requires" : {
            "ExtUtils::MakeMaker" : "6.56"
         }
      },
      "runtime" : {

META.yml  view on Meta::CPAN

---
abstract: 'A validator for the structure of IBANs.'
author:
  - 'Abe Timmerman <abeltje@cpan.org>'
build_requires:
  Test::Fatal: '0'
  Test::Simple: '0.88'
  Test::Warnings: '0'
configure_requires:
  ExtUtils::MakeMaker: '6.56'
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

    PREREQ_PM => {
        'Hash::Util' => 0, # It's core, but still...
    },

    CONFIGURE_REQUIRES => {
        'ExtUtils::MakeMaker' => 6.56,
    },

    BUILD_REQUIRES => {
        'Test::Simple'   => 0.88,    # done_testing()
        'Test::Fatal'    => 0,
        'Test::Warnings' => 0,
    },

    MIN_PERL_VERSION => 5.008,
    META_ADD => {
        'meta-spec' => {
            version => 2,
        },
        license => [ 'perl_5' ],
        'resources' => {

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 0.893 second using v1.01-cache-2.11-cpan-54e63673c56 )