lhoward has asked for the wisdom of the Perl Monks concerning the following question:
#!/usr/bin/perl use warnings; use strict; use Getopt::Std; our ($opt_t); getopts('t'); if($opt_t){ eval 'use Test::Simple tests => 3;'; ok(double(2) == 4); ok(double(-3) == -6); ok(double(0) == 0); exit; } print join ' ',map(double($_),@ARGV),"\n"; sub double{ my $a=shift; $a*2; }
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Testing programs
by sauoq (Abbot) on Oct 25, 2005 at 13:05 UTC | |
Re: Testing programs
by pboin (Deacon) on Oct 25, 2005 at 13:08 UTC | |
Re: Testing programs
by xdg (Monsignor) on Oct 25, 2005 at 13:56 UTC | |
Re: Testing programs
by Perl Mouse (Chaplain) on Oct 25, 2005 at 14:51 UTC | |
Re: Testing programs
by blazar (Canon) on Oct 25, 2005 at 13:22 UTC |