~britco/nginx/nginx

« back to all changes in this revision

Viewing changes to debian/modules/chunkin-nginx-module/t/lib/Test/Nginx/Socket/Chunkin.pm

  • Committer: Package Import Robot
  • Author(s): Dmitry E. Oboukhov
  • Date: 2011-11-24 14:16:50 UTC
  • mfrom: (4.2.40 sid)
  • Revision ID: package-import@ubuntu.com-20111124141650-4n06eynzekxycf6c
Tags: 1.1.8-2
* debian/modules/chunkin-nginx-module:
  + Reinclude HttpChunkin Module with new upstream version (closes: #638814)
* debian/control:
  + Add myself to uploaders list.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package Test::Nginx::Socket::Chunkin;
 
2
 
 
3
use lib 'lib';
 
4
use lib 'inc';
 
5
use Test::Nginx::Socket -Base;
 
6
 
 
7
config_preamble(<<'_EOC_');
 
8
        error_page 411 = @chunkin_error;
 
9
        location @chunkin_error {
 
10
            chunkin_resume;
 
11
        }
 
12
_EOC_
 
13
 
 
14
1;