Dancer2-Plugin-RPC-RESTISH

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

   "name" : "Dancer2-Plugin-RPC-RESTISH",
   "no_index" : {
      "directory" : [
         "t",
         "inc"
      ]
   },
   "prereqs" : {
      "build" : {
         "requires" : {
            "Test::Fatal" : "0",
            "Test::Simple" : "0.88",
            "Test::Warnings" : "0"
         }
      },
      "configure" : {
         "requires" : {
            "ExtUtils::MakeMaker" : "6.5502"
         }
      },
      "runtime" : {

META.yml  view on Meta::CPAN

---
abstract: unknown
author:
  - 'Abe Timmerman <abeltje@cpan.org>'
build_requires:
  Test::Fatal: '0'
  Test::Simple: '0.88'
  Test::Warnings: '0'
configure_requires:
  ExtUtils::MakeMaker: '6.5502'
dynamic_config: 1
generated_by: 'ExtUtils::MakeMaker version 7.62, CPAN::Meta::Converter version 2.150010'
license: unknown
meta-spec:
  url: http://module-build.sourceforge.net/META-spec-v1.4.html
  version: '1.4'

Makefile.PL  view on Meta::CPAN

    VERSION_FROM  => 'lib/Dancer2/Plugin/RPC/RESTISH.pm',
    ABSTRACT_FROM => 'lib/Dancer2/Plugin/RPC/RESTISH.pm',
    NAME          => 'Dancer2::Plugin::RPC::RESTISH',
    AUTHOR        => 'Abe Timmerman <abeltje@cpan.org>',

    CONFIGURE_REQUIRES => {
        'ExtUtils::MakeMaker' => 6.55_02,
    },
    BUILD_REQUIRES => {
        'Test::Simple'   => 0.88,
        'Test::Fatal'    => 0,
        'Test::Warnings' => 0,
    },
    PREREQ_PM => {
        'Dancer2::Plugin::RPC' => '2.01_02',
    },

    MIN_PERL_VERSION => '5.010001',

    META_MERGE => {
        'meta-spec' => {

t/Test/abeltje.pm  view on Meta::CPAN

use v5.10.1;
use warnings;
use strict;

our $VERSION = '1.07';

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