The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more
|
my $t = Test::AnsibleModule->new;
{
use_ok( 'AnsibleModule' );
my $m = AnsibleModule->new;
isa_ok $m , 'AnsibleModule' ;
can_ok $m , 'exit_json' ;
$t ->run_ok( 't/ext/exit_json' );
};
done_testing;
|