Subject: | test for $has_pari in t/01-dh.t wrong |
The test if pari is available currently is
$has_pari = eval { require Math::Pari; 1 };
but this would have to be
$has_pari = eval { require Math::BigInt::Pari; 1 };
because only then would Pari ever be used.
Thanks,