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

use strict;
my $t = Test::AnsibleModule->new;
$t->run_ok('t/ext/arg_test', bye => 'bye');
is_deeply $t->last_response,
{
changed => 0,
msg => 'arg_test',
yay => 'yes',
hello => 'bye',
bye => 'bye'
};
done_testing;