Merge remote branch 'wreis/master'
[catagits/Catalyst-View-Component-SubInclude.git] / t / author / http.t
CommitLineData
7b1b8afd 1use strict;
2use warnings;
3use FindBin qw/$Bin/;
4use lib "$Bin/../lib";
5use Test::More;
6use Catalyst::Test 'ESITest';
7
8my $res_content = get('/http_cpan');
9like $res_content, qr{CPAN Directory};
10like $res_content, qr{WREIS};
11
12$res_content = get('/http_github');
13like $res_content, qr{GitHub};
14like $res_content, qr{Wallace Reis};
15
16done_testing;