Add a paragraph to summarize the motivation for releases since 5.815
[libwww-perl-eserte.git] / t / live / jigsaw-neg-get.t
blobeccd9d37ebf049c2d1bed26c5a6d6f34a50129ed
1 print "1..1\n";
3 use strict;
4 use LWP::UserAgent;
6 my $ua = LWP::UserAgent->new(keep_alive => 1);
8 my $res = $ua->get(
9   "http://jigsaw.w3.org/HTTP/neg",
10     Connection => "close",
13 print $res->as_string, "\n";
15 print "not " unless $res->code == 300;
16 print "ok 1\n";