#!/usr/nin/perl # Test that xsl:processing-instruction works # $Id: pi.t,v 1.1 2004/02/16 10:29:20 gellyfish Exp $ use strict; use Test::More tests => 2; use vars qw($DEBUGGING); $DEBUGGING = 0; use_ok('XML::XSLT'); eval { my $stylesheet =< bar="foo" EOS my $xml =< Foo 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(!$@,"processing instruction text as expected");