The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
use strict;
use warnings;
use Test::More tests => 2;
use AnyEvent::Open3::Simple;

my $ipc = AnyEvent::Open3::Simple->new;

isa_ok $ipc, 'AnyEvent::Open3::Simple';

eval { $ipc->run };

like $@, qr{run method requires at least one argument}, 'error';