- or download this
....
$self->tmpl_path(
...
]
);
...
- or download this
my $tmpl = $self->load_tmpl('login.tmpl')
or die "Failed to open template file 'login.tmpl'";
- or download this
use Test::Exception;
...
...
$app->tmpl_path( [] );
dies_ok { $app->run() } 'dies if missing template file';
}