[Catalyst] Handling configuration outside the Catalyst application

2009-08-27 Thread Daniel Austin
Hello How are you handling configuration for applications or code that run outside of Catalyst? For example, in my model tests, I have code like this: use MyCompany::CatApp; my $app = MyCompany::CatApp-new(); my $model = $app-model('DB::Model')-new({}); ok( $model-insert );

Re: [Catalyst] Handling configuration outside the Catalyst application

2009-08-27 Thread Eden Cardim
On Thu, Aug 27, 2009 at 11:10 PM, Daniel Austindaniel.aus...@gmail.com wrote: Hello How are you handling configuration for applications or code that run outside of Catalyst? For example, in my model tests, I have code like this:    use MyCompany::CatApp;    my $app =

Re: [Catalyst] Handling configuration outside the Catalyst application

2009-08-27 Thread Bill Moseley
On Thu, Aug 27, 2009 at 7:10 PM, Daniel Austin daniel.aus...@gmail.com wrote: Hello How are you handling configuration for applications or code that run outside of Catalyst? For example, in my model tests, I have code like this:    use MyCompany::CatApp;    my $app =