# Before `make install' is performed this script should be runnable # with `make test'. After `make install' it should work as `perl # DOMCreate.t' ######################### We start with some black magic to print on failure. END {ok(0) unless $loaded;} use Carp; # use blib; use XML::Xerces; use Test::More tests => 2; use Config; use lib 't'; use TestUtils qw($SAMPLE_DIR); use vars qw($loaded); use strict; $loaded = 1; ok($loaded, "module loaded"); ######################### End of black magic. my $document = q[ Mike Pogue mpogue@us.ibm.com Tom Watson rtwatson@us.ibm.com Susan Hardenbrook susanhar@us.ibm.com ]; my $perl = $Config{startperl}; $perl =~ s/^\#!//; my $cmd = "$perl -Mblib $SAMPLE_DIR/DOMCreate.pl 2>/dev/null"; # print STDERR "Running: $cmd\n"; my $output = `$cmd`; ok($document eq $output, 'document eq output'); diag("Found output\n[$output]") if $document ne $output;