summaryrefslogtreecommitdiffstats
path: root/t/001compile.t
diff options
context:
space:
mode:
authorzach%zachlipton.com <>2001-11-18 02:29:06 +0100
committerzach%zachlipton.com <>2001-11-18 02:29:06 +0100
commitd5149813356087a486d5abd5e1d57adbd8379395 (patch)
tree3abc1b869f6252b829051f839a4bddaf6d29e6d9 /t/001compile.t
parent77398f5a2904dcbae2a650eb5910167ff26268f0 (diff)
downloadbugzilla-d5149813356087a486d5abd5e1d57adbd8379395.tar.gz
bugzilla-d5149813356087a486d5abd5e1d57adbd8379395.tar.xz
Fix the double testing of .pm files.
No review needed for tests at this time.
Diffstat (limited to 't/001compile.t')
-rw-r--r--t/001compile.t10
1 files changed, 3 insertions, 7 deletions
diff --git a/t/001compile.t b/t/001compile.t
index 4fc568662..561aacf45 100644
--- a/t/001compile.t
+++ b/t/001compile.t
@@ -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