Subject: | All tests fail in v1.16+ |
Date: | Wed, 6 Jan 2016 17:09:36 -0700 |
To: | bug-Net-Whois-IP [...] rt.cpan.org |
From: | Maxwell Carey <mcarey [...] ucar.edu> |
In v1.16, whoisip_query was modified to take the registrar name as its
second parameter:
sub whoisip_query {
my($ip,$reg,$multiple_flag,$search_options) = @_;
...
my($response) = _do_lookup($ip,$reg,$multiple_flag,$search_options);
In v1.15, it always used "ARIN":
sub whoisip_query {
my($ip,$multiple_flag,$search_options) = @_;
...
my($response) =
_do_lookup($ip,"ARIN",$multiple_flag,$search_options);
Neither the tests nor the documentation were changed to reflect this, so
all tests fail: http://matrix.cpantesters.org/?dist=Net-Whois-IP%201.16