File: README

package info (click to toggle)
libhtml-template-dumper-perl 0.1-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 192 kB
  • sloc: perl: 247; makefile: 7
file content (23 lines) | stat: -rw-r--r-- 687 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
This module helps in debugging HTML::Template-based programs.  Testing 
the output of your programs is as easy as walking a hash.  Note that it 
will only test the variables set in the template, not the design of the 
page.  For that, you really need to use human.pl, a throughly excelent 
peice of software that has been stable for many, many years.

The prefered installation method is to use Module::Build:

perl Build.PL
./Build
./Build test
./Build install

A Makefile.PL is also included for backwards compatibility, and is 
thus installable using the old-school method:

perl Makefile.PL
make
make test
make install

Note that Module::Build needs to be installed in either case.