App-Duppy

 view release on metacpan or  search on metacpan

META.yml  view on Meta::CPAN

requires:
  Carp: 0
  DDP: 0
  File::Which: 0
  FindBin: 0
  IO::All: 0
  IPC::Run: 0
  JSON: 0
  Moo: 0
  MooX::Options: 0
  Try::Tiny: 0
  lib: 0
  perl: 5.010
  strict: 0
  warnings: 0
version: 0.05

Makefile.PL  view on Meta::CPAN

  "PREREQ_PM" => {
    "Carp" => 0,
    "DDP" => 0,
    "File::Which" => 0,
    "FindBin" => 0,
    "IO::All" => 0,
    "IPC::Run" => 0,
    "JSON" => 0,
    "Moo" => 0,
    "MooX::Options" => 0,
    "Try::Tiny" => 0,
    "lib" => 0,
    "strict" => 0,
    "warnings" => 0
  },
  "TEST_REQUIRES" => {
    "Test::More" => 0
  },
  "VERSION" => "0.05",
  "test" => {
    "TESTS" => "t/*.t"

lib/App/Duppy.pm  view on Meta::CPAN

use strict;
use warnings;
use Moo;
use MooX::Options;
use IPC::Run qw/run new_chunker/;
use File::Which;
use IO::All;
use JSON;
use DDP;
use Carp;
use Try::Tiny;

option 'test' => (
    is       => 'rw',
    required => 1,
    format   => 's@',
    doc =>
      'Test option: one ore more json file(s) containing the casperjs tests to perform'
);

option 'casper_path' => (



( run in 0.734 second using v1.01-cache-2.11-cpan-05444aca049 )