diff options
author | bbaetz%acm.org <> | 2003-03-22 13:47:09 +0100 |
---|---|---|
committer | bbaetz%acm.org <> | 2003-03-22 13:47:09 +0100 |
commit | 681ce77bc0dc5828eae2bb48471db9e373437e4b (patch) | |
tree | a7c8ba0b1e070ea489c96246eca65fc7c36f6235 /t/Support | |
parent | 3f1f4e57809b2e3f42e637a86646e806470faec5 (diff) | |
download | bugzilla-681ce77bc0dc5828eae2bb48471db9e373437e4b.tar.gz bugzilla-681ce77bc0dc5828eae2bb48471db9e373437e4b.tar.xz |
Bug 180642 - Move authentication code into a module
r=gerv, justdave
a=justdave
Diffstat (limited to 't/Support')
-rw-r--r-- | t/Support/Files.pm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/t/Support/Files.pm b/t/Support/Files.pm index 108f6541a..e822346d0 100644 --- a/t/Support/Files.pm +++ b/t/Support/Files.pm @@ -29,12 +29,13 @@ package Support::Files; @additional_files = (); %exclude_deps = ( 'XML::Parser' => ['importxml.pl'], + 'Net::LDAP' => ['Bugzilla/Auth/LDAP.pm'], ); -# XXX - this file should be rewritten to use File::Find or similar +# XXX - this file should really be rewritten to use File::Find or similar $file = '*'; -@files = (glob($file), glob('Bugzilla/*.pm')); +@files = (glob($file), glob('Bugzilla/*.pm'), glob('Bugzilla/*/*.pm')); sub have_pkg { my ($pkg) = @_; |