On Tue, Aug 24, 2004 at 01:35:48PM -0400, William McKee wrote:
> > was there supposed to be an attachment or something?
> 
> Dangit! Let's try that again...

OK, something funny is going on. My attachments seem to be getting
stripped. I'm going to inline the code in this email.


William

---------------

## FILE: statement_not_reached_OK.t
#!/usr/bin/perl
use strict;
no strict 'refs';
use warnings;
use Test::More;
plan tests => 1;
use Apache::TestUtil;
use Apache::TestRequest;
# This is OK
use CGI::Carp;
ok 1;



## FILE: statement_not_reached.t
#!/usr/bin/perl
use strict;
no strict 'refs';
use warnings;
use Test::More;
plan tests => 1;
# Calling CGI::Carp before loading Apache::* fails
use CGI::Carp;
use Apache::TestUtil;
use Apache::TestRequest;
ok 1;



-- 
Knowmad Services Inc.
http://www.knowmad.com

Reply via email to