The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more
|
#!/usr/bin/env perl -w
BEGIN { plan tests => 2 }
my $hvat =Business::Tax::VAT::Validation->new();
if ( ref $hvat ){
ok(1);
} else {
ok(0);
}
my $res = $hvat ->check( 'BE-0774257760' );
if ( $res ){
ok(1);
} else {
warn $hvat ->get_last_error_code. ' ' . $hvat ->get_last_error;
}
exit ;
|