Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re: Testing programs

by sauoq (Abbot)
on Oct 25, 2005 at 13:05 UTC ( [id://502694]=note: print w/replies, xml ) Need Help??


in reply to Testing programs

Why use a command line argument for testing? I sometimes stick my tests in a separate file and do() them when I want to.

In my program...

#!/usr/bin/perl use warnings; use strict; do "tests.pl"; sub foo { "foo" }
And then in tests.pl ...
use Test::Simple tests => 1; ok( foo() eq 'foo' ); exit;

Then I can just comment out my do "tests.pl"; line when I'm done with it.

-sauoq
"My two cents aren't worth a dime.";

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://502694]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (5)
As of 2024-03-29 10:16 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found