in reply to Catalyst testing

Take a peek in Catalyst::Plugin::ConfigLoader for the many places and ways you can influence configuration. Some version of this should do it.

BEGIN { $ENV{MYAPP_CONFIG_LOCAL_SUFFIX} = "_test"; } # Where myapp_test.yml has the override # setting (plus whatever _local mods you have too), e.g.- --- Model::BLAH: connection_info: - my_override_stuff...

Replies are listed 'Best First'.
Re^2: Catalyst testing
by Anonymous Monk on Mar 19, 2009 at 16:54 UTC
    That was helpful. Thank you, Mother.