The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

use Test::More;

BEGIN {
  eval "use PDL::Slatec;";
  if ( !$@ ) {
    eval "use PDL::Graphics::Limits;";
    plan tests => 1;
  } else {
     print "$@\n";
    plan skip_all => 'PDL::Slatec not available';
  }
  use_ok('PDL::Graphics::Limits');
};

# end