1*0Sstevel@tonic-gate#!/usr/local/bin/perl -w 2*0Sstevel@tonic-gate 3*0Sstevel@tonic-gateuse lib qw(t/lib); 4*0Sstevel@tonic-gate 5*0Sstevel@tonic-gate# Due to a bug in older versions of MakeMaker & Test::Harness, we must 6*0Sstevel@tonic-gate# ensure the blib's are in @INC, else we might use the core CGI.pm 7*0Sstevel@tonic-gateuse lib qw(blib/lib blib/arch); 8*0Sstevel@tonic-gate 9*0Sstevel@tonic-gateuse strict; 10*0Sstevel@tonic-gateuse Test::More tests => 1; 11*0Sstevel@tonic-gate 12*0Sstevel@tonic-gate# Can't do much with this other than make sure it loads properly 13*0Sstevel@tonic-gateBEGIN { use_ok('CGI::Apache') }; 14