Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re: Why is my test failing?

by haoess (Curate)
on Mar 06, 2008 at 11:21 UTC ( [id://672431]=note: print w/replies, xml ) Need Help??


in reply to Why is my test failing?

eval { use Test::Perl::Critic (-profile => 't/perlcriticrc'); };

What gives? The eval should catch if Test::Perl::Critic is not installed right?

No. You are using eval BLOCK syntax, so the use statement is executed at compile time. To get this catched use eval STRING as in

eval "use Test::Perl::Critic (-profile => 't/perlcriticrc')";

-- Frank

Log In?
Username:
Password:

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

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

    No recent polls found