Help for this page

Select Code to Download


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