~ubuntu-branches/ubuntu/lucid/libwww-perl/lucid-updates

« back to all changes in this revision

Viewing changes to t/base/request.t

  • Committer: Bazaar Package Importer
  • Author(s): Damyan Ivanov, Jonathan Yu, Damyan Ivanov
  • Date: 2009-11-23 22:34:41 UTC
  • mfrom: (1.4.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20091123223441-j4h7h2fidei8y225
Tags: 5.834-1
[ Jonathan Yu ]
* New upstream release

[ Damyan Ivanov ]
* update dependencies on compression libraries
  + drop libcompress-zlib-perl and libcompress-bzip2-perl (no longer used
    upstream)
  + merge perl (>= 5.10.0) | libio-compress-perl and perl (>= 5.10.1) |
    libio-compress-perl

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
 
14
14
ok($req->method, "GET");
15
15
ok($req->uri, "http://www.example.com");
16
 
ok($req->header("Accept-Encoding") =~ /\bgzip\b/);  # assuming Compress::Zlib is there
 
16
ok($req->header("Accept-Encoding") =~ /\bgzip\b/);  # assuming IO::Uncompress::Gunzip is there
17
17
 
18
18
$req->dump(prefix => "# ");
19
19