]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Fix the double testing of .pm files.
authorzach%zachlipton.com <>
Sun, 18 Nov 2001 01:29:06 +0000 (01:29 +0000)
committerzach%zachlipton.com <>
Sun, 18 Nov 2001 01:29:06 +0000 (01:29 +0000)
No review needed for tests at this time.

t/001compile.t

index 4fc5686625db72730b77d71e27f4b21f4b128d14..561aacf4520ad18e117718ec52a88624df859157 100644 (file)
@@ -38,7 +38,7 @@
 ###Compilation###
 BEGIN { use lib 't/'; }
 BEGIN { use Support::Files; }
-BEGIN { $tests = @Support::Files::testitems + 4; }
+BEGIN { $tests = @Support::Files::testitems; }
 BEGIN { use Test::More tests => $tests; }
 
 use strict;
@@ -76,12 +76,8 @@ foreach my $file (@testitems) {
         }
 }      
 
-# and the libs:                                                                 
-use_ok('Token'); # 52                                                 
-use_ok('Attachment'); # 53                                            
-use_ok('Bug'); # 54                                            
-use_ok('RelationSet'); # 55                                           
-
+# Remove the lib testing from here since it is now done 
+# in Files.pm