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

Re^2: Setting up a test db with MakeMaker

by danmcb (Monk)
on Feb 25, 2013 at 14:10 UTC ( [id://1020529]=note: print w/replies, xml ) Need Help??


in reply to Re: Setting up a test db with MakeMaker
in thread Setting up a test db with MakeMaker

indeed, this works fine. Some code for those that are curious:

in t/test_setup.pm:

package test_setup; sub setup { # setup your db or whatever here } 1;

In a test module

require t::test_setup; test_setup::setup();

Rather simple in fact. Works fine on 5.10

UPDATE: in fact - I am using this.

package test_setup; sub setup { # ... } BEGIN { # must be after the sub definition setup(); $ENV{USE_TEST_DB} = 1; } 1;

And in my Catalyst MyApp.pm class:

if ( $ENV{USE_TEST_DB} ) { __PACKAGE__->config( 'Plugin::ConfigLoader' => { file => 'myapp_test +.yml'} ); }

Now it is only necessary to "use" test_setup.pm. The setup is executed automatically, and the ENV variable causes the Catalyst app to use another config, which in turn connects to the test database in place of the normal development one.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (2)
As of 2024-04-25 06:34 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found