Upgrade to CGI.pm-3.13
[p5sagit/p5-mst-13.2.git] / lib / CGI / t / can.t
CommitLineData
70194bd6 1#!/usr/local/bin/perl -w
2
3# Due to a bug in older versions of MakeMaker & Test::Harness, we must
4# ensure the blib's are in @INC, else we might use the core CGI.pm
5
6use lib qw(blib/lib blib/arch);
7
8use Test::More tests => 2;
9
10BEGIN{ use_ok('CGI'); }
11
12can_ok('CGI', qw/cookie param/);