Commit d5149813 authored by zach%zachlipton.com's avatar zach%zachlipton.com

Fix the double testing of .pm files.

No review needed for tests at this time.
parent 77398f5a
...@@ -38,7 +38,7 @@ ...@@ -38,7 +38,7 @@
###Compilation### ###Compilation###
BEGIN { use lib 't/'; } BEGIN { use lib 't/'; }
BEGIN { use Support::Files; } BEGIN { use Support::Files; }
BEGIN { $tests = @Support::Files::testitems + 4; } BEGIN { $tests = @Support::Files::testitems; }
BEGIN { use Test::More tests => $tests; } BEGIN { use Test::More tests => $tests; }
use strict; use strict;
...@@ -76,12 +76,8 @@ foreach my $file (@testitems) { ...@@ -76,12 +76,8 @@ foreach my $file (@testitems) {
} }
} }
# and the libs: # Remove the lib testing from here since it is now done
use_ok('Token'); # 52 # in Files.pm
use_ok('Attachment'); # 53
use_ok('Bug'); # 54
use_ok('RelationSet'); # 55
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment