App-Prove-Plugin-RandomSeed

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

      "runtime" : {
         "requires" : {
            "App::Prove" : "0",
            "Class::Method::Modifiers" : "0",
            "perl" : "5.008001"
         }
      },
      "test" : {
         "requires" : {
            "Capture::Tiny" : "0",
            "Test::Fatal" : "0",
            "Test::More" : "0.98"
         }
      }
   },
   "provides" : {
      "App::Prove::Plugin::RandomSeed" : {
         "file" : "lib/App/Prove/Plugin/RandomSeed.pm",
         "version" : "0.01"
      }
   },

META.yml  view on Meta::CPAN

---
abstract: 'A prove plugin to get/set random seed of shuffled test.'
author:
  - 'Masahiro Iuchi <masahiro.iuchi@gmail.com>'
build_requires:
  Capture::Tiny: '0'
  Test::Fatal: '0'
  Test::More: '0.98'
configure_requires:
  Module::Build::Tiny: '0.035'
dynamic_config: 0
generated_by: 'Minilla/v3.0.13, CPAN::Meta::Converter version 2.150010'
license: perl
meta-spec:
  url: http://module-build.sourceforge.net/META-spec-v1.4.html
  version: '1.4'
name: App-Prove-Plugin-RandomSeed

cpanfile  view on Meta::CPAN

## -*- mode: perl; coding: utf-8 -*-
#
requires 'perl', '5.008001';

requires 'App::Prove';
requires 'Class::Method::Modifiers';

on 'test' => sub {
    requires 'Capture::Tiny';
    requires 'Test::Fatal';
    requires 'Test::More', '0.98';
};

t/load.t  view on Meta::CPAN

use strict;
use warnings;

use Test::More;
use Test::Fatal;

use Capture::Tiny qw( capture );

use App::Prove;
use App::Prove::Plugin::RandomSeed;

is exception {
    my $app = App::Prove->new;
    App::Prove::Plugin::RandomSeed->load( { app_prove => $app, args => [] } );



( run in 1.515 second using v1.01-cache-2.11-cpan-54e63673c56 )