X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=t%2Flib%2FTestAppChainedAbsolutePathPart.pm;fp=t%2Flib%2FTestAppChainedAbsolutePathPart.pm;h=6ffd0474d5ac7df440ef0eb9cce7d9cfff1393f9;hp=0000000000000000000000000000000000000000;hb=8a6a6581d48a3c1c4d5f631cdb7cbda336c0e5e2;hpb=1b04b972e18d9681ab30d07a267bb2896ea9f7d2 diff --git a/t/lib/TestAppChainedAbsolutePathPart.pm b/t/lib/TestAppChainedAbsolutePathPart.pm new file mode 100644 index 0000000..6ffd047 --- /dev/null +++ b/t/lib/TestAppChainedAbsolutePathPart.pm @@ -0,0 +1,20 @@ +package TestAppChainedAbsolutePathPart; + +use strict; +use Catalyst qw/ + Test::Errors + Test::Headers +/; +use Catalyst::Utils; + +our $VERSION = '0.01'; + +TestAppChainedAbsolutePathPart + ->config( + name => 'TestAppChainedAbsolutePathPart', + root => '/some/dir' + ); + +TestAppChainedAbsolutePathPart->setup; + +1;