Re: httpd-framework: a few forgotten need_module()s

2011-04-18 Thread Joe Orton
On Sun, Apr 17, 2011 at 05:55:44PM +0200, Torsten Förtsch wrote:
 t/apache/if_sections.t needs the proxy module, t/modules/filter.t needs 
 mod_case_filter.

Thanks, committed!

Regards, Joe


httpd-framework: a few forgotten need_module()s

2011-04-17 Thread Torsten Förtsch
Hi,

t/apache/if_sections.t needs the proxy module, t/modules/filter.t needs 
mod_case_filter.

Torsten Förtsch

-- 
Need professional modperl support? Hire me! (http://foertsch.name)

Like fantasy? http://kabatinte.net
Index: t/apache/if_sections.t
===
--- t/apache/if_sections.t	(revision 1094143)
+++ t/apache/if_sections.t	(working copy)
@@ -12,6 +12,7 @@
 plan tests = 11*2,
   need need_lwp,
   need_module('mod_headers'),
+  need_module('mod_proxy'),
   need_min_apache_version('2.3.8');
 
 
Index: t/modules/filter.t
===
--- t/modules/filter.t	(revision 1094143)
+++ t/modules/filter.t	(working copy)
@@ -6,7 +6,7 @@
 use Apache::TestUtil qw(t_cmp t_write_file);
 use File::Spec;
 
-plan tests = 1, need need_module('mod_filter');
+plan tests = 1, need need_module('mod_filter'), need_module('mod_case_filter');
 
 my $r = GET_BODY('/modules/cgi/xother.pl');