diff options
author | LEVAI Daniel <leva@ecentrum.hu> | 2014-08-25 06:54:49 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2014-08-30 14:19:18 +0700 |
commit | 4594861b50c3dc29dee2b677c4aebb2d3b99efc3 (patch) | |
tree | 4b15d0fa557de745638b61af704a8a991ce373fd /perl/perl-Test-Simple/README | |
parent | 6fd08c7f409db08cc629e3d4e8479432ecb3d82c (diff) | |
download | slackbuilds-4594861b50c3dc29dee2b677c4aebb2d3b99efc3.tar.gz |
perl/perl-Test-Simple: Added (framework for writing test scripts).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'perl/perl-Test-Simple/README')
-rw-r--r-- | perl/perl-Test-Simple/README | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/perl/perl-Test-Simple/README b/perl/perl-Test-Simple/README new file mode 100644 index 0000000000..5e7706833f --- /dev/null +++ b/perl/perl-Test-Simple/README @@ -0,0 +1,6 @@ +This is an extremely simple, extremely basic module for writing tests suitable +for CPAN modules and other pursuits. If you wish to do more complicated +testing, use the Test::More module (a drop-in replacement for this one). + +The basic unit of Perl testing is the ok. For each thing you want to test your +program will print out an "ok" or "not ok" to indicate pass or fail. |