Experian-IDAuth
view release on metacpan or search on metacpan
t/failed_request.t view on Meta::CPAN
#!/usr/bin/perl
use strict;
use warnings;
use Test::More;
use Test::Exception;
use Path::Tiny;
use Experian::IDAuth;
my $tmp_dir = Path::Tiny->tempdir(CLEANUP => 1);
my $prove_id = Experian::IDAuth->new(
client_id => '45',
search_option => 'ProveID_KYC',
username => 'my_user',
password => 'my_pass',
residence => 'gb',
postcode => '666',
date_of_birth => '1977-04-10',
first_name => 'John',
last_name => 'Galt',
phone => '34878123',
email => 'john.galt@gmail.com',
premise => 'premise',
folder => $tmp_dir,
);
throws_ok(
sub {
$prove_id->get_result;
},
qr/ErrorCode/,
"Expected die because of invalid credentials"
);
done_testing;
( run in 0.579 second using v1.01-cache-2.11-cpan-39bf76dae61 )