#!/usr/bin/perl # Test xsl:copy # $Id: copy.t,v 1.1 2004/02/17 10:06:12 gellyfish Exp $ use Test::More tests => 2; use strict; use vars qw($DEBUGGING); $DEBUGGING = 0; use_ok('XML::XSLT'); eval { my $stylesheet =< bold EOS my $xml =< a EOX my $parser = XML::XSLT->new(\$stylesheet,debug => $DEBUGGING); $parser->transform(\$xml); my $wanted = ''; my $outstr = $parser->toString; die "$outstr ne $wanted\n" unless $outstr eq $wanted; }; ok(!$@,"apply attribute set to xsl:copy");