Add a paragraph to summarize the motivation for releases since 5.815
[libwww-perl-eserte.git] / t / local / autoload.t
bloba425a7c6c5f2ff8cbc1c87932acb3df946d923c7
2 # See if autoloading of protocol schemes work
5 print "1..1\n";
7 require LWP::UserAgent;
8 # note no LWP::Protocol::file;
10 $url = "file:.";
12 require URI;
13 print "Trying to fetch '" . URI->new($url)->file . "'\n";
15 my $ua = new LWP::UserAgent;    # create a useragent to test
16 $ua->timeout(30);               # timeout in seconds
18 my $request = HTTP::Request->new(GET => $url);
20 my $response = $ua->request($request);
21 if ($response->is_success) {
22     print "ok 1\n";
23     print $response->as_string;
25 else {
26     print "not ok 1\n";
27     print $response->error_as_HTML;