The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

use strict;
my $t = Test::AnsibleModule->new;
{
use_ok('AnsibleModule');
my $m = AnsibleModule->new;
isa_ok $m, 'AnsibleModule';
# exit_json
can_ok $m, 'exit_json';
$t->run_ok('t/ext/exit_json');
};
done_testing;