X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F10-live_auto.t;fp=t%2F10-live_auto.t;h=56997e80031b122e5f58b13d696e0e337cc72669;hb=b2d855940c68a8bec09c76f6235b804ef9090dc6;hp=0000000000000000000000000000000000000000;hpb=b9274b9f46f6054021414d948d23bbae95e51444;p=catagits%2FCatalyst-Plugin-ConfigLoader.git diff --git a/t/10-live_auto.t b/t/10-live_auto.t new file mode 100644 index 0000000..56997e8 --- /dev/null +++ b/t/10-live_auto.t @@ -0,0 +1,14 @@ +use strict; +use warnings; + +use FindBin; +use lib "$FindBin::Bin/lib"; + +use Test::More tests => 2; + +use Catalyst::Test 'TestApp'; + +{ + ok( my $response = request('http://localhost/config/'), 'request ok' ); + is( $response->content, 'foo', 'config ok' ); +}