Fix warnings in new Catalyst
[catagits/Catalyst-Plugin-Static-Simple.git] / t / 11serve_static.t
CommitLineData
ab02ca0d 1#!perl
2
3use strict;
4use warnings;
5
6use FindBin;
7use lib "$FindBin::Bin/lib";
8
9use Test::More tests => 6;
10use Catalyst::Test 'TestApp';
11
12# test getting a file via serve_static_file
13ok( my $res = request('http://localhost/serve_static'), 'request ok' );
14is( $res->code, 200, '200 ok' );
755bd822 15# .pm can be both application/x-pagemaker or text/x-perl, so only check for a slash
16like( $res->content_type, qr{/}, 'content-type ok' );
919acaed 17like( $res->content, qr/package TestApp/, 'content of serve_static ok' );
ab02ca0d 18
19# test getting a non-existant file via serve_static_file
20ok( $res = request('http://localhost/serve_static_404'), 'request ok' );
919acaed 21is( $res->code, 404, '404 ok' );