--- trunk/t/5-output-tt.t 2007/11/01 00:16:46 948 +++ trunk/t/5-output-tt.t 2007/11/01 00:16:48 949 @@ -1,22 +1,18 @@ #!/usr/bin/perl -w -use Test::More tests => 5; -use Test::Exception; -use Cwd qw/abs_path/; -use blib; use strict; +use blib; + +use Test::More tests => 5; BEGIN { +use_ok( 'WebPAC::Test' ); use_ok( 'WebPAC::Output::TT' ); } -ok(my $abs_path = abs_path($0), "abs_path"); -$abs_path =~ s#/[^/]*$#/#; -diag "abs_path: $abs_path"; - ok(my $tt = new WebPAC::Output::TT( include_path => "$abs_path../conf/output/tt", - no_log => 1, + %LOG ), "new"); my $ds = { @@ -40,5 +36,5 @@ cmp_ok(my $text = $tt->apply( template => 'text.tt', data => $ds ), '=~', qr/Source.*foo/, "apply"); -diag $text; +diag $text if $debug;