On 03/11/06, John Napiorkowski <[EMAIL PROTECTED]> wrote:
This is also what test driven development is for :)
Have a look at Catalyst::Manual::Tutorial::Testing
You'll find that a lot of dispatched methods in
Catalyst are wrapped in an eval so that it can catch
errors for you. 'eval 99' is referring to spot in the
evaled code.
I've found that it can be a bit hard to debug what's
going wrong when the DBIx schema classes have errors.
Try checking that all the required modules are loaded
and so forth. Use 'perl -c ...' to to a sanity check
on the syntax. Try paring down the components you are
loading to see if you can ID the missing or troubled
part.
Start with the DBIx schemas you created, looks like
that is the core of the issue.
This is also what test driven development is for :)
Have a look at Catalyst::Manual::Tutorial::Testing
_______________________________________________ List: Catalyst@lists.rawmode.org Listinfo: http://lists.rawmode.org/mailman/listinfo/catalyst Searchable archive: http://www.mail-archive.com/catalyst@lists.rawmode.org/ Dev site: http://dev.catalyst.perl.org/