App-Cmd

 view release on metacpan or  search on metacpan

t/setup-ignored.t  view on Meta::CPAN

use strict;
use warnings;

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

use lib 't/lib';

is(
  exception {
    require Test::IgnoreCommand;
  },
  undef,
  'Ignored Commands shouldn\'t be fatal'
);

my @plugins = Test::IgnoreCommand->_plugins();

is_deeply( \@plugins, [] , 'no commands were loaded' );

done_testing;



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