App-Prove-Plugin-Distributed

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

   "no_index" : {
      "directory" : [
         "t",
         "inc"
      ]
   },
   "prereqs" : {
      "build" : {
         "requires" : {
            "Test::Builder" : 0,
            "Test::Fatal" : 0,
            "Test::Requires" : 0
         }
      },
      "configure" : {
         "requires" : {
            "ExtUtils::MakeMaker" : 0
         }
      },
      "runtime" : {
         "recommends" : {

META.yml  view on Meta::CPAN

---
abstract: 'an L<App::Prove> plugin to distribute test jobs using client and server model.'
author:
  - 'Shin Leong <lsf@cpan.org>'
build_requires:
  Test::Builder: 0
  Test::Fatal: 0
  Test::Requires: 0
configure_requires:
  ExtUtils::MakeMaker: 0
dynamic_config: 1
generated_by: 'ExtUtils::MakeMaker version 6.62, CPAN::Meta::Converter version 2.112150'
license: unknown
meta-spec:
  url: http://module-build.sourceforge.net/META-spec-v1.4.html
  version: 1.4
name: App-Prove-Plugin-Distributed

Makefile.PL  view on Meta::CPAN

use 5.005;
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
    NAME              => 'App::Prove::Plugin::Distributed',
    VERSION_FROM      => 'lib/App/Prove/Plugin/Distributed.pm', # finds $VERSION
    BUILD_REQUIRES => {
	'Test::Builder' => 0,
	'Test::Fatal' => 0,
	'Test::Requires' => 0,
    },
    META_MERGE => {
	recommends => {
	    'Net::Address::IP::Local' => 0,
	    'PBS::Client' => 0,
	    'Net::Ping' => 0,
	},
    },
    PREREQ_PM         => {

t/no_tap_error.t  view on Meta::CPAN


This test is to illustrate the "do" function load the perl code 
but the end of loading the perl code it will not trigger any end block.
For this case the end block of Test::Builder.  Therefore, the result
of the test is not TAP valid output.

=cut

use strict;
use Test::More 'no_plan';
use Test::Fatal;
use Test::Builder;

local $| = 1;

pass;
pass;
pass;

t/use_require_no_tap_error.t  view on Meta::CPAN


use strict;
use Test::More 'no_plan';
use Test::Fatal;
$| = 1;



# =begin testing SETUP
use Test::Requires {
    'NOT::A::VALID::MODULE'     => '0',
};



( run in 2.736 seconds using v1.01-cache-2.11-cpan-54e63673c56 )