kip 2003/08/22 23:49:44
Added: t/directives/style 01_AxAddProcessor.t
Log:
Start of the conf directive test section.
Revision Changes Path
1.1 xml-axkit/t/directives/style/01_AxAddProcessor.t
Index: 01_AxAddProcessor.t
===================================================================
#!perl
use Apache::Test;
use Apache::TestUtil;
use Apache::TestRequest qw( GET ) ;
plan tests => 1, have_module qw(LWP);
sub test_basic {
my $resp = GET '/directives/style//01_AxAddProcessor.xml' ;
#warn "GOT CONTENT:" . $resp->content();
return 0 unless $resp->content =~ /child text added/gi;
return 1;
}
ok( test_basic(),1, "Basic AxAddProcessor test." );