]> git.vpit.fr Git - perl/modules/Perl-Critic-Policy-Dynamic-NoIndirect.git/commitdiff
Also test the count of violations
authorVincent Pit <vince@profvince.com>
Thu, 9 Jul 2009 07:49:22 +0000 (09:49 +0200)
committerVincent Pit <vince@profvince.com>
Thu, 9 Jul 2009 07:49:22 +0000 (09:49 +0200)
t/10-basic.t

index abf5a3d2b64eb3844c2146593e06ad46d6bd54c6..a1b1885751979264c9d691fc8de2340506b76e35 100644 (file)
@@ -3,10 +3,13 @@
 use strict;
 use warnings;
 
-my $subtests;
-BEGIN { $subtests = 3 }
+my ($tests, $subtests);
+BEGIN {
+ $tests    = 8;
+ $subtests = 3;
+}
 
-use Test::More tests => $subtests * 14;
+use Test::More tests => $tests + $subtests * 14;
 
 use Perl::Critic::TestUtils qw/pcritique_with_violations/;
 
@@ -32,6 +35,8 @@ my $policy = 'Dynamic::NoIndirect';
    next;
   }
 
+  is @violations, @expected, "right count of violations $id";
+
   for my $v (@violations) {
    my $exp = shift @expected;