Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re: How to test exit?

by Sidhekin (Priest)
on Jun 05, 2007 at 21:22 UTC ( [id://619498]=note: print w/replies, xml ) Need Help??


in reply to How to test exit?

Test::Trap! Shameless plug, yes indeed. But it does what you want:

$ cat trap_exit.t use warnings; use strict; use Test::More tests => 3; use Test::Trap; ok(require('test_exit.pl'), 'loaded'); trap{ killer() }; $trap->die_like( qr/hasta la vista baby/, q{Expected killer to die} ); trap{ exiter() }; $trap->exit_is( 42, q{Expected exiter to exit} );
$ prove -v test_exit.t test_exit....1..3 ok 1 - loaded ok 2 - Expected killer to die ok 3 - Expected exiter to exit ok All tests successful. Files=1, Tests=3, 0 wallclock secs ( 0.09 cusr + 0.00 csys = 0.09 C +PU)

print "Just another Perl ${\(trickster and hacker)},"
The Sidhekin proves Sidhe did it!

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (6)
As of 2024-04-19 06:32 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found