Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Re: Reload a Catalyst application during testing

by talexb (Chancellor)
on May 10, 2019 at 12:04 UTC ( [id://1233561]=note: print w/replies, xml ) Need Help??


in reply to Reload a Catalyst application during testing

Can't you just use two separate scopes?

{ { my $mech = Test::WWW::Mechanize::Catalyst->new( catalyst_app => "CoolCatalystApp" ); run_tests( $mech ); } change_config(); { my $mech = Test::WWW::Mechanize::Catalyst->new( catalyst_app => "CoolCatalystApp" ); run_tests( $mech ); } }
Once the app goes out of scope, it doesn't exist any more.

Alex / talexb / Toronto

Thanks PJ. We owe you so much. Groklaw -- RIP -- 2003 to 2013.

Replies are listed 'Best First'.
Re^2: Reload a Catalyst application during testing
by Anonymous Monk on May 15, 2019 at 12:58 UTC

    Doh. Thank you, sometimes the most obvious answer is staring you in the face!

    - gwg (not logged in)

Log In?
Username:
Password:

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

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

    No recent polls found