#!/bin/perl -w # $Id: /xmltwig/trunk/t/test_even_more_coverage.t 4 2007-03-16T12:16:25.259192Z mrodrigu $ # test designed to improve coverage of the module use strict; use Carp; use File::Spec; use lib File::Spec->catdir(File::Spec->curdir,"t"); use tools; #$|=1; my $DEBUG=0; use XML::Twig; my $TMAX=1; print "1..$TMAX\n"; { my $t= XML::Twig->new( parse_start_tag => sub { return 'a'; })->parse( 'c'); is( $t->sprint, 'c', "dummy parse_start_tag"); } exit 0;