X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Component-ACCEPT_CONTEXT.git;a=blobdiff_plain;f=t%2Flive-test.t;fp=t%2Flive-test.t;h=0000000000000000000000000000000000000000;hp=88a3380a234b7ee262cbe0e1824d83e70585f850;hb=75f37967953d7c4558c4e4bfd6525e2afc61fd7c;hpb=6166f03d12382556473156bd939721414a11fcb2 diff --git a/t/live-test.t b/t/live-test.t deleted file mode 100644 index 88a3380..0000000 --- a/t/live-test.t +++ /dev/null @@ -1,19 +0,0 @@ -#!/usr/bin/env perl - -use strict; -use warnings; -use Test::More tests => 3; - -# setup library path -use FindBin qw($Bin); -use lib "$Bin/lib"; - -# make sure testapp works -use ok 'TestApp'; - -# a live test against TestApp, the test application -use Test::WWW::Mechanize::Catalyst 'TestApp'; -my $mech = Test::WWW::Mechanize::Catalyst->new; -$mech->get_ok('http://localhost/', 'get main page'); -$mech->content_like(qr/it works/i, 'see if it has our text'); -