Add a paragraph to summarize the motivation for releases since 5.815
[libwww-perl-eserte.git] / t / misc / ptest.pl
blobefb088061bf515b2c3f12c970354ec90a2e9e748
1 #!/local/perl/5.003/bin/perl -w
3 use lib 'blib/lib';
5 use LWP::Debug '+';
7 use LWP::UserAgent;
9 $ua = new LWP::UserAgent;
10 $ua->timeout(10);
12 $req = new HTTP::Request GET => 'http://localhost:3399/foo';
13 $res = $ua->request($req);
15 print $res->as_string;