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

use 5.006;
use strict;
use warnings FATAL => 'all';
use Test::More tests => 6;

BEGIN {
    use_ok( 'IP::Info' )                       || print "Bail out!";
    use_ok( 'IP::Info::Response' )             || print "Bail out!";
    use_ok( 'IP::Info::Response::Network' )    || print "Bail out!";
    use_ok( 'IP::Info::Response::Location' )   || print "Bail out!";
    use_ok( 'IP::Info::UserAgent' )            || print "Bail out!";
    use_ok( 'IP::Info::UserAgent::Exception' ) || print "Bail out!";
}

diag( "Testing IP::Info $IP::Info::VERSION, Perl $], $^X" );