X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flib%2FTestAppOnDemand.pm;fp=t%2Flib%2FTestAppOnDemand.pm;h=6704a8aff4193e93fa12eb9734c138505af748fb;hb=4a41d5d1ec3187cc41e15767b21c14b2aee31740;hp=0000000000000000000000000000000000000000;hpb=2757db2c7c600c8a0b8e2b4366f38c97804c2844;p=catagits%2FCatalyst-Runtime.git diff --git a/t/lib/TestAppOnDemand.pm b/t/lib/TestAppOnDemand.pm new file mode 100644 index 0000000..6704a8a --- /dev/null +++ b/t/lib/TestAppOnDemand.pm @@ -0,0 +1,20 @@ +package TestAppOnDemand; + +use strict; +use Catalyst qw/ + Test::Errors + Test::Headers +/; +use Catalyst::Utils; + +our $VERSION = '0.01'; + +__PACKAGE__->config( + name => __PACKAGE__, + root => '/some/dir', + parse_on_demand => 1, +); + +__PACKAGE__->setup; + +1;