The Perl Toolchain Summit 2025 Needs You: You can help 🙏 Learn more

#!/usr/bin/env perl -w
use strict;
use Test;
BEGIN { plan tests => 1 }
my $hvat=Business::Tax::VAT::Validation->new();
if (ref $hvat){
ok(1);
} else {
ok(0);
}
exit;
__END__