Test-Simple

Test::Simple(3p) Perl Programmers Reference Guide Test::Simple(3p)

Test-Simple

Test::Simple(3p) Perl Programmers Reference Guide Test::Simple(3p) # Test::Simple(3p) Perl Programmers Reference Guide Test::Simple(3p) NNAAMMEE # Test::Simple - Basic utilities for writing tests. SSYYNNOOPPSSIISS # use Test::Simple tests => 1; ok( $foo eq $bar, 'foo is bar' ); DDEESSCCRRIIPPTTIIOONN # ** If you are unfamiliar with testing rreeaadd TTeesstt::::TTuuttoorriiaall ffiirrsstt!! ** 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). ...