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

use strict;

use Test::Most tests => 2;

use CGI::Info;

isa_ok(CGI::Info->new(), 'CGI::Info', 'Creating CGI::Info object');
ok(!defined(CGI::Info::new()));