Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re^2: Test::More usage to test functions that die

by stvn (Monsignor)
on Dec 08, 2004 at 15:21 UTC ( [id://413222]=note: print w/replies, xml ) Need Help??


in reply to Re: Test::More usage to test functions that die
in thread Test::More usage to test functions that die

This wont work unless all your code is in main:: (and even then its a delicate situation at best)

#!/usr/bin/perl sub main::croak { print "I croaked"; } { package Test; use Carp; sub myfunc { croak("I am dying"); } } eval { Test::myfunc(); }; print $@ if $@; *myfunc = \&Test::myfunc; eval { myfunc(); }; print $@ if $@; __OUTPUT__ I am dying at test.pl line 18 I am dying at test.pl line 26
However, what you are talking about is not unlike the ideas behind MockObjects, see Test::MockObject and Test::MockModule for more info.

-stvn

Replies are listed 'Best First'.
Re^3: Test::More usage to test functions that die
by trammell (Priest) on Dec 08, 2004 at 16:22 UTC

    I know that the code as written won't work, which is why I labeled it pseudocode. But thanks for clarifying.

    Yes, this is essentially the MockObject strategy. Thanks for adding the links.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (6)
As of 2024-04-23 18:51 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found