comparison lib/Test/Nginx.pm @ 348:08bb2b3785a2

Tests: added basic test for split_clients module.
author Sergey Kandaurov <pluknet@nginx.com>
date Thu, 10 Oct 2013 13:35:55 +0400
parents 9d0a2fa47ac6
children 5fdde9f755c9
comparison
equal deleted inserted replaced
347:f6d195aa0303 348:08bb2b3785a2
117 cache => '(?s)^(?!.*--without-http-cache)', 117 cache => '(?s)^(?!.*--without-http-cache)',
118 pop3 => '(?s)^(?!.*--without-mail_pop3_module)', 118 pop3 => '(?s)^(?!.*--without-mail_pop3_module)',
119 imap => '(?s)^(?!.*--without-mail_imap_module)', 119 imap => '(?s)^(?!.*--without-mail_imap_module)',
120 smtp => '(?s)^(?!.*--without-mail_smtp_module)', 120 smtp => '(?s)^(?!.*--without-mail_smtp_module)',
121 pcre => '(?s)^(?!.*--without-pcre)', 121 pcre => '(?s)^(?!.*--without-pcre)',
122 split_clients
123 => '(?s)^(?!.*--without-http_split_clients_module)',
122 ); 124 );
123 125
124 my $re = $regex{$feature}; 126 my $re = $regex{$feature};
125 $re = $feature if !defined $re; 127 $re = $feature if !defined $re;
126 128