You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axkit-dev@xml.apache.org by ma...@apache.org on 2003/07/16 16:40:58 UTC

cvs commit: xml-axkit/t/xslt-basic 01.t

matts       2003/07/16 07:40:58

  Modified:    .        MANIFEST
               t/xslt-basic 01.t
  Log:
  Missing file in MANIFEST was just a typo
  xslt-basic/01.t was requesting 01, rather than 01.xml
  
  Revision  Changes    Path
  1.17      +1 -1      xml-axkit/MANIFEST
  
  Index: MANIFEST
  ===================================================================
  RCS file: /home/cvs/xml-axkit/MANIFEST,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- MANIFEST	26 May 2003 02:35:41 -0000	1.16
  +++ MANIFEST	16 Jul 2003 14:40:57 -0000	1.17
  @@ -187,5 +187,5 @@
   t/xslt-basic/01.t
   t/xslt-basic/02_include.t
   t/xslt-basic/03_document_1arg.t
  -t/xslt-basic/03_document_2args.t
  +t/xslt-basic/04_document_2args.t
   typemap
  
  
  
  1.2       +2 -2      xml-axkit/t/xslt-basic/01.t
  
  Index: 01.t
  ===================================================================
  RCS file: /home/cvs/xml-axkit/t/xslt-basic/01.t,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- 01.t	25 May 2003 19:29:11 -0000	1.1
  +++ 01.t	16 Jul 2003 14:40:58 -0000	1.2
  @@ -6,8 +6,8 @@
   plan tests => 1, have_module qw(LWP);
   
   sub test_basic {
  -    my $resp = GET '/xslt-basic/01' ;
  -    warn "GOT CONTENT:" . $resp->content();
  +    my $resp = GET '/xslt-basic/01.xml' ;
  +    # warn "GOT CONTENT:" . $resp->content();
       return 0 unless $resp->content =~ /child text added/gi;
       return 1;
   }