# = HISTORY SECTION ===================================================================== # --------------------------------------------------------------------------------------- # version | date | author | changes # --------------------------------------------------------------------------------------- # 0.03 |20.03.2001| JSTENZEL | adapted to tag templates; # 0.02 |09.12.2000| JSTENZEL | new namespace: "PP" => "PerlPoint"; # 0.01 |16.11.2000| JSTENZEL | new. # --------------------------------------------------------------------------------------- # PerlPoint test script # pragmata use strict; # load modules use Carp; use Safe; use Test; use PerlPoint::Backend; use PerlPoint::Parser 0.24; use PerlPoint::Constants 0.09; # prepare tests BEGIN {plan tests=>1;} # declare variables my (@streamData, @results); # build parser my ($parser)=new PerlPoint::Parser; # and call it $parser->run( stream => \@streamData, tags => {}, files => ['t/cache.pp'], safe => new Safe, cache => CACHE_CLEANUP, trace => TRACE_NOTHING, display => DISPLAY_NOINFO+DISPLAY_NOWARN, ); # perform checks: cache file should be removed ok(not -e 't/.cache.pp.ppcache');