added missing test files
[catagits/Catalyst-Devel.git] / share / root / apptest.tt
1 [% startperl %]
2 use strict;
3 use warnings;
4 use Test::More tests => 2;
5
6 BEGIN { use_ok 'Catalyst::Test', '[% name %]' }
7
8 ok( request('/')->is_success, 'Request should succeed' );
9 __podtest__
10 [% startperl %]
11 use strict;
12 use warnings;
13 use Test::More;
14
15 eval "use Test::Pod 1.14";
16 plan skip_all => 'Test::Pod 1.14 required' if $@;
17 plan skip_all => 'set TEST_POD to enable this test' unless $ENV{TEST_POD};
18
19 all_pod_files_ok();
20