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

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

BEGIN {
    use_ok('WWW::Google::Places'              )   || print "Bail out!\n";
    use_ok('WWW::Google::Places::Params'      )   || print "Bail out!\n";
    use_ok('WWW::Google::Places::SearchResult')   || print "Bail out!\n";
    use_ok('WWW::Google::Places::DetailResult')   || print "Bail out!\n";
    use_ok('WWW::Google::Places::Location')       || print "Bail out!\n";
    use_ok('WWW::Google::Places::Geometry')       || print "Bail out!\n";
    use_ok('WWW::Google::Places::Review')         || print "Bail out!\n";
    use_ok('WWW::Google::Places::Review::Aspect') || print "Bail out!\n";
}

diag( "Testing WWW::Google::Places $WWW::Google::Places::VERSION, Perl $], $^X" );