App-Fasops

 view release on metacpan or  search on metacpan

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

use strict;
use warnings;
use Test::More tests => 3;
use App::Cmd::Tester;

use App::Fasops;

my $result = test_app( 'App::Fasops' => [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' );



( run in 0.801 second using v1.01-cache-2.11-cpan-8f98c5d2c55 )