App-Anchr

 view release on metacpan or  search on metacpan

t/01-commands.t  view on Meta::CPAN

use Test::More;
use App::Cmd::Tester;

use App::Anchr;

my $result = test_app( 'App::Anchr' => [qw(commands )] );

like(
    $result->stdout,
    qr{list the application's commands},
    'default commands outputs'
);

is( $result->stderr, '', 'nothing sent to sderr' );

is( $result->error, undef, 'threw no exceptions' );

done_testing(3);



( run in 1.348 second using v1.01-cache-2.11-cpan-d7f47b0818f )