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 Test::More tests => 3;

use IMDB::Persons;

my %pars = (crit => 'hhhhhhhhhhhhh', cache => 0, debug => 0);

my $person = new IMDB::Persons(%pars);

is($person->error, 'Not Found', 'error');
is($person->status, 0, 'status');
is($person->code, undef, 'code');