File Coverage

inc/Test/LoadAllModules.pm
Criterion Covered Total %
statement 34 37 91.8
branch 3 8 37.5
condition n/a
subroutine 8 9 88.8
pod 1 2 50.0
total 46 56 82.1


line stmt bran cond sub pod time code
1             #line 1
2 1     1   651 package Test::LoadAllModules;
  1         2  
  1         39  
3 1     1   6 use strict;
  1         1  
  1         37  
4 1     1   973 use warnings;
  1         12736  
  1         35  
5 1     1   1101 use Module::Pluggable::Object;
  1         1292  
  1         88  
6 1     1   689 use List::MoreUtils qw(any);
  1         4  
  1         46  
7             use Test::More ();
8              
9             our $VERSION = '0.02';
10 1     1   6  
  1         2  
  1         350  
11             use Exporter;
12             our @ISA = qw/Exporter/;
13             our @EXPORT = qw/all_uses_ok/;
14              
15 1     1 1 70 sub all_uses_ok {
16 1         2 my %param = @_;
17 1 50       5 my $search_path = $param{search_path};
18 0         0 unless ($search_path) {
19 0         0 Test::More::plan skip_all => 'no search path';
20             exit;
21 1         4 }
22 1 50       20 Test::More::plan('no_plan');
  1         11  
23             my @exceptions = @{ $param{except} || [] };
24 1 50       2 my @lib
  1         8  
25 1         3 = @{ $param{lib} || [ 'lib' ] };
  4         1660  
26             foreach my $class (
27             grep { !is_excluded( $_, @exceptions ) }
28 1         3 sort do {
29 1         10 local @INC = @lib;
30             my $finder = Module::Pluggable::Object->new(
31 1         11 search_path => $search_path );
32             ( $search_path, $finder->plugins );
33             }
34             )
35 4         14 {
36             Test::More::use_ok($class);
37             }
38             }
39              
40 4     4 0 7 sub is_excluded {
41 4 0   0   34 my ( $module, @exceptions ) = @_;
  0            
42             any { $module eq $_ || $module =~ /$_/ } @exceptions;
43             }
44              
45             1;
46              
47             __END__