App-Prove-Plugin-Elasticsearch

 view release on metacpan or  search on metacpan

t/App-ape.t  view on Meta::CPAN

use strict;
use warnings;

use Test::More tests => 1;
use Cwd qw{abs_path};
use Test::Fatal;

use App::ape;

#XXX using pod2usage incorrectly here unfortunately, resulting in exit() rather than die()
#like( exception { App::ape->new('zippy') }, qr/valid command/i, "Valid command must be passed to ape");

my $old_procname = $0;

no warnings qw{redefine once};
*App::ape::test::new = sub { return 'whee' };
use warnings;

is( App::ape->new('test', '--help'), 'whee', "Correct ape submodule used");
#XXX fails under dzil test
#is( $0, abs_path('lib/App/ape/test.pm'), "program name set correctly for use by perldoc help");

$0 = $old_procname;



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