• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/Test/H14-Oct-2018-2,012762

t/H14-Oct-2018-2,2461,795

xt/author/H14-Oct-2018-10089

Build.PLH A D14-Oct-20182.8 KiB11584

ChangesH A D14-Oct-201824.5 KiB572533

MANIFESTH A D14-Oct-2018688 3837

META.jsonH A D14-Oct-20181.9 KiB7473

META.ymlH A D14-Oct-20181.2 KiB5251

Makefile.PLH A D14-Oct-2018998 3331

READMEH A D14-Oct-2018880 3522

README

1Test-Trap
2
3Primarily (but not exclusively) for use in test scripts: A block eval
4on steroids, configurable and extensible, but by default trapping
5(Perl) STDOUT, STDERR, warnings, exceptions, would-be exit codes, and
6return values from boxed blocks of test code.
7
8INSTALLATION
9
10To install this module, run the following commands:
11
12  perl Makefile.PL
13  make
14  make test
15  sudo make install
16
17(If you are running as root, you may drop "sudo", and just run "make install".)
18
19Alternatively, for those without a proper make, the Module::Build approach:
20
21  perl Build.PL
22  perl Build
23  perl Build test
24  sudo perl Build install
25
26(Again, if you are running as root, you may run "make install" without "sudo".)
27
28
29COPYRIGHT AND LICENCE
30
31Copyright (C) 2006-2014 Eirik Berg Hanssen
32
33This library is free software; you can redistribute it and/or modify
34it under the same terms as Perl itself.
35